/external/ltp/testcases/open_posix_testsuite/conformance/definitions/mqueue_h/ |
9-1-buildonly.c | 14 struct timespec abstime; local 20 size = mq_timedreceive(mqdes, msgp, msg_len, &msg_prio, &abstime);
|
/external/libcups/cups/ |
thread.c | 57 struct timespec abstime; /* Timeout */ local 59 abstime.tv_sec = (long)timeout; 60 abstime.tv_nsec = (long)(1000000000 * (timeout - (long)timeout)); 62 pthread_cond_timedwait(cond, mutex, &abstime);
|
/external/mesa3d/src/vulkan/wsi/ |
wsi_common_queue.h | 127 struct timespec abstime; local 128 abstime.tv_nsec = abs_nsec; 129 abstime.tv_sec = MIN2(abs_sec, INT_TYPE_MAX(abstime.tv_sec)); 132 ret = pthread_cond_timedwait(&queue->cond, &queue->mutex, &abstime);
|
/external/libevent/ |
evthread_pthread.c | 144 struct timeval now, abstime; local 147 evutil_timeradd(&now, tv, &abstime); 148 ts.tv_sec = abstime.tv_sec; 149 ts.tv_nsec = abstime.tv_usec*1000;
|
evutil_time.c | 362 ev_uint64_t abstime, usec; local 370 abstime = mach_absolute_time(); 371 usec = (abstime * base->mach_timebase_units.numer)
|
/external/libxcam/xcore/ |
xcam_mutex.h | 83 struct timespec abstime; local 87 xcam_mem_clear (abstime); 88 abstime.tv_sec += now.tv_sec + now.tv_usec / 1000000; 89 abstime.tv_nsec = (now.tv_usec % 1000000) * 1000; 91 return pthread_cond_timedwait (&_cond, &mutex._mutex, &abstime);
|
/external/libcxx/src/support/win32/ |
thread_win32.cpp | 119 auto abstime = local 121 auto timeout_ms = duration_cast<milliseconds>(abstime - system_clock::now());
|
/external/mesa3d/src/intel/vulkan/ |
anv_queue.c | 630 struct timespec abstime; local 631 abstime.tv_nsec = abs_nsec; 632 abstime.tv_sec = MIN2(abs_sec, INT_TYPE_MAX(abstime.tv_sec)); 635 &device->mutex, &abstime); [all...] |