Searched refs:B_TO_POSITIVE_ERROR (Results 1 - 15 of 15) sorted by relevance

/haiku/src/libs/posix_error_mapper/
H A Dpthread_spinlock.cpp13 return B_TO_POSITIVE_ERROR(sReal_pthread_spin_init(lock, pshared));
18 return B_TO_POSITIVE_ERROR(sReal_pthread_spin_destroy(lock));
23 return B_TO_POSITIVE_ERROR(sReal_pthread_spin_lock(lock));
28 return B_TO_POSITIVE_ERROR(sReal_pthread_spin_trylock(lock));
33 return B_TO_POSITIVE_ERROR(sReal_pthread_spin_unlock(lock));
H A Dpthread_rwlock.cpp13 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlock_init(lock, attr));
18 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlock_destroy(lock));
23 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlock_rdlock(lock));
28 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlock_tryrdlock(lock));
34 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlock_timedrdlock(lock, timeout));
39 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlock_wrlock(lock));
44 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlock_trywrlock(lock));
50 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlock_timedwrlock(lock, timeout));
55 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlock_unlock(lock));
H A Dpthread_specific.cpp13 return B_TO_POSITIVE_ERROR(sReal_pthread_key_create(key, destructorFunc));
18 return B_TO_POSITIVE_ERROR(sReal_pthread_key_delete(key));
24 return B_TO_POSITIVE_ERROR(sReal_pthread_setspecific(key, value));
H A Dpthread_attr.cpp13 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_destroy(attr));
18 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_init(attr));
24 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_getdetachstate(attr,
31 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_setdetachstate(attr,
38 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_getstacksize(attr,
45 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_setstacksize(attr,
52 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_getscope(attr,
59 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_setscope(attr,
66 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_setschedparam(attr,
73 return B_TO_POSITIVE_ERROR(sReal_pthread_attr_getschedpara
[all...]
H A Dpthread_rwlockattr.cpp13 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlockattr_init(attr));
19 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlockattr_destroy(attr));
25 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlockattr_getpshared(attr,
32 return B_TO_POSITIVE_ERROR(sReal_pthread_rwlockattr_setpshared(attr,
H A Dpthread_mutex.cpp12 return B_TO_POSITIVE_ERROR(sReal_pthread_mutex_destroy(mutex));
18 return B_TO_POSITIVE_ERROR(sReal_pthread_mutex_getprioceiling(mutex,
25 return B_TO_POSITIVE_ERROR(sReal_pthread_mutex_init(mutex, attr));
30 return B_TO_POSITIVE_ERROR(sReal_pthread_mutex_lock(mutex));
37 return B_TO_POSITIVE_ERROR(sReal_pthread_mutex_setprioceiling(mutex,
44 return B_TO_POSITIVE_ERROR(sReal_pthread_mutex_timedlock(mutex, spec));
49 return B_TO_POSITIVE_ERROR(sReal_pthread_mutex_trylock(mutex));
54 return B_TO_POSITIVE_ERROR(sReal_pthread_mutex_unlock(mutex));
H A Dpthread_cond.cpp12 return B_TO_POSITIVE_ERROR(sReal_pthread_cond_destroy(cond));
18 return B_TO_POSITIVE_ERROR(sReal_pthread_cond_init(cond, attr));
23 return B_TO_POSITIVE_ERROR(sReal_pthread_cond_broadcast(cond));
28 return B_TO_POSITIVE_ERROR(sReal_pthread_cond_signal(cond));
34 return B_TO_POSITIVE_ERROR(sReal_pthread_cond_timedwait(cond, mutex,
41 return B_TO_POSITIVE_ERROR(sReal_pthread_cond_wait(cond, mutex));
H A Dpthread_condattr.cpp13 return B_TO_POSITIVE_ERROR(sReal_pthread_condattr_destroy(condAttr));
19 return B_TO_POSITIVE_ERROR(sReal_pthread_condattr_init(condAttr));
25 return B_TO_POSITIVE_ERROR(sReal_pthread_condattr_getpshared(condAttr,
32 return B_TO_POSITIVE_ERROR(sReal_pthread_condattr_setpshared(condAttr,
39 return B_TO_POSITIVE_ERROR(sReal_pthread_condattr_getclock(condAttr,
46 return B_TO_POSITIVE_ERROR(sReal_pthread_condattr_setclock(condAttr,
H A Dpthread_thread.cpp16 return B_TO_POSITIVE_ERROR(sReal_pthread_create(thread, attr, start_routine,
22 return B_TO_POSITIVE_ERROR(sReal_pthread_detach(thread));
27 return B_TO_POSITIVE_ERROR(sReal_pthread_join(thread, _value));
32 return B_TO_POSITIVE_ERROR(sReal_pthread_kill(thread, sig));
37 return B_TO_POSITIVE_ERROR(sReal_pthread_setconcurrency(newLevel));
42 return B_TO_POSITIVE_ERROR(sReal_pthread_cancel(thread));
48 return B_TO_POSITIVE_ERROR(sReal_pthread_setcancelstate(state, _oldState));
53 return B_TO_POSITIVE_ERROR(sReal_pthread_setcanceltype(type, _oldType));
59 return B_TO_POSITIVE_ERROR(sReal_pthread_getschedparam(thread, policy,
66 return B_TO_POSITIVE_ERROR(sReal_pthread_setschedpara
[all...]
H A Dpthread_mutexattr.cpp13 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_destroy(mutexAttr));
19 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_getprioceiling(mutexAttr,
26 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_getprotocol(mutexAttr,
33 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_getpshared(mutexAttr,
40 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_gettype(mutexAttr,
47 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_init(mutexAttr));
53 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_setprioceiling(mutexAttr,
60 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_setprotocol(mutexAttr,
67 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_setpshared(mutexAttr,
74 return B_TO_POSITIVE_ERROR(sReal_pthread_mutexattr_settyp
[all...]
H A Dpthread_misc.cpp13 return B_TO_POSITIVE_ERROR(sReal_pthread_atfork(prepare, parent, child));
19 return B_TO_POSITIVE_ERROR(sReal_pthread_once(once_control, init_routine));
H A Dsignal.cpp14 return B_TO_POSITIVE_ERROR(sReal_pthread_sigmask(how, set, oldSet));
19 return B_TO_POSITIVE_ERROR(sReal_sigwait(set, signal));
H A Dtime.cpp15 return B_TO_POSITIVE_ERROR(sReal_clock_nanosleep(clockID, flags, time,
22 return B_TO_POSITIVE_ERROR(sReal_clock_getcpuclockid(pid, _clockID));
H A Dmisc.cpp28 *error = B_TO_POSITIVE_ERROR(*error);
/haiku/headers/os/support/
H A DErrors.h329 #define B_TO_POSITIVE_ERROR(error) _to_positive_error(error) macro

Completed in 45 milliseconds