HomeSort by relevance Sort by last modified time
    Searched refs:thrd_error (Results 1 - 3 of 3) sorted by null

  /external/mesa3d/include/c11/
threads_posix.h 106 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;
150 return (rt == 0) ? thrd_success : thrd_error;
159 return (pthread_cond_wait(cond, mtx) == 0) ? thrd_success : thrd_error;
208 return thrd_error;
227 return (pthread_mutex_lock(mtx) == 0) ? thrd_success : thrd_error;
252 return (rt == ETIMEDOUT) ? thrd_busy : thrd_error;
281 return (pthread_mutex_unlock(mtx) == 0) ? thrd_success : thrd_error;
298 return thrd_error;
    [all...]
threads.h 67 thrd_error, // failed enumerator in enum:__anon27232
threads_win32.h 325 if (!cond) return thrd_error;
352 if (!cond) return thrd_error;
370 if (!cond) return thrd_error;
383 if (!cond || !mtx || !xt) return thrd_error;
387 return (GetLastError() == ERROR_TIMEOUT) ? thrd_busy : thrd_error;
397 if (!cond || !mtx) return thrd_error;
420 if (!mtx) return thrd_error;
425 return thrd_error;
434 if (!mtx) return thrd_error;
444 if (!mtx || !xt) return thrd_error;
    [all...]

Completed in 81 milliseconds