Searched refs:thrd_error (Results 1 - 7 of 7) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/util/
H A Dcnd_monotonic.h56 int ret = thrd_error;
92 return (pthread_cond_broadcast(&cond->cond) == 0) ? thrd_success : thrd_error;
105 return (pthread_cond_signal(&cond->cond) == 0) ? thrd_success : thrd_error;
122 return (GetLastError() == ERROR_TIMEOUT) ? thrd_busy : thrd_error;
127 return (rt == 0) ? thrd_success : thrd_error;
141 return (pthread_cond_wait(&cond->cond, mtx) == 0) ? thrd_success : thrd_error;
/xsrc/external/mit/MesaLib.old/dist/include/c11/
H A Dthreads.h56 thrd_error, // failed enumerator in enum:__anond0aeed7a0203
H A Dthreads_posix.h106 return (pthread_cond_broadcast(cond) == 0) ? thrd_success : thrd_error;
122 return (pthread_cond_init(cond, NULL) == 0) ? thrd_success : thrd_error;
130 return (pthread_cond_signal(cond) == 0) ? thrd_success : thrd_error;
146 return (rt == 0) ? thrd_success : thrd_error;
155 return (pthread_cond_wait(cond, mtx) == 0) ? thrd_success : thrd_error;
204 return thrd_error;
223 return (pthread_mutex_lock(mtx) == 0) ? thrd_success : thrd_error;
245 return (rt == ETIMEDOUT) ? thrd_busy : thrd_error;
274 return (pthread_mutex_unlock(mtx) == 0) ? thrd_success : thrd_error;
291 return thrd_error;
[all...]
H A Dthreads_win32.h329 if (!cond) return thrd_error;
356 if (!cond) return thrd_error;
374 if (!cond) return thrd_error;
387 if (!cond || !mtx || !abs_time) return thrd_error;
391 return (GetLastError() == ERROR_TIMEOUT) ? thrd_busy : thrd_error;
401 if (!cond || !mtx) return thrd_error;
424 if (!mtx) return thrd_error;
429 return thrd_error;
438 if (!mtx) return thrd_error;
448 if (!mtx || !ts) return thrd_error;
[all...]
/xsrc/external/mit/MesaLib/dist/include/c11/
H A Dthreads.h56 thrd_error, // failed enumerator in enum:__anon73afb02d0203
H A Dthreads_posix.h106 return (pthread_cond_broadcast(cond) == 0) ? thrd_success : thrd_error;
122 return (pthread_cond_init(cond, NULL) == 0) ? thrd_success : thrd_error;
130 return (pthread_cond_signal(cond) == 0) ? thrd_success : thrd_error;
146 return (rt == 0) ? thrd_success : thrd_error;
155 return (pthread_cond_wait(cond, mtx) == 0) ? thrd_success : thrd_error;
204 return thrd_error;
223 return (pthread_mutex_lock(mtx) == 0) ? thrd_success : thrd_error;
245 return (rt == ETIMEDOUT) ? thrd_busy : thrd_error;
274 return (pthread_mutex_unlock(mtx) == 0) ? thrd_success : thrd_error;
291 return thrd_error;
[all...]
H A Dthreads_win32.h262 return (GetLastError() == ERROR_TIMEOUT) ? thrd_busy : thrd_error;
264 return thrd_error;
297 return thrd_error;
326 return thrd_error;
364 return thrd_error;
441 return thrd_error;
445 return thrd_error;
480 return thrd_error;
483 return (*key != 0xFFFFFFFF) ? thrd_success : thrd_error;
504 return TlsSetValue(key, val) ? thrd_success : thrd_error;
[all...]

Completed in 6 milliseconds