HomeSort by relevance Sort by last modified time
    Searched refs:abstime (Results 51 - 63 of 63) sorted by null

1 23

  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/
pthread.h 176 const struct timespec *abstime);
178 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
184 const struct timespec *abstime);
  /prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/
pthread.h 176 const struct timespec *abstime);
178 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
184 const struct timespec *abstime);
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/
pthread.h 176 const struct timespec *abstime);
178 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
184 const struct timespec *abstime);
  /prebuilts/ndk/7/platforms/android-3/arch-x86/usr/include/
pthread.h 176 const struct timespec *abstime);
178 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
184 const struct timespec *abstime);
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/
pthread.h 176 const struct timespec *abstime);
178 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
184 const struct timespec *abstime);
  /prebuilts/ndk/7/platforms/android-4/arch-x86/usr/include/
pthread.h 176 const struct timespec *abstime);
178 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
184 const struct timespec *abstime);
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/
pthread.h 176 const struct timespec *abstime);
178 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
184 const struct timespec *abstime);
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/
pthread.h 176 const struct timespec *abstime);
178 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
184 const struct timespec *abstime);
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 829 TSAN_INTERCEPTOR(int, pthread_mutex_timedlock, void *m, void *abstime) {
830 SCOPED_TSAN_INTERCEPTOR(pthread_mutex_timedlock, m, abstime);
831 int res = REAL(pthread_mutex_timedlock)(m, abstime);
924 TSAN_INTERCEPTOR(int, pthread_rwlock_timedrdlock, void *m, void *abstime) {
925 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_timedrdlock, m, abstime);
926 int res = REAL(pthread_rwlock_timedrdlock)(m, abstime);
951 TSAN_INTERCEPTOR(int, pthread_rwlock_timedwrlock, void *m, void *abstime) {
952 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_timedwrlock, m, abstime);
953 int res = REAL(pthread_rwlock_timedwrlock)(m, abstime);
1003 TSAN_INTERCEPTOR(int, pthread_cond_timedwait, void *c, void *m, void *abstime) {
    [all...]
  /frameworks/native/libs/utils/
Threads.cpp 505 status_t wait(WinCondition* condState, HANDLE hMutex, nsecs_t* abstime)
515 if (abstime) {
516 nsecs_t reltime = *abstime - systemTime();
612 nsecs_t absTime = systemTime()+reltime;
614 return ((WinCondition*)mState)->wait(condState, hMutex, &absTime);
  /external/valgrind/main/drd/
drd_pthread_intercepts.c 771 const struct timespec* abstime)
778 CALL_FN_W_WWW(ret, fn, cond, mutex, abstime);
786 const struct timespec* abstime),
787 (cond, mutex, abstime));
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/locks/
AbstractQueuedLongSynchronizer.java 1866 long abstime = deadline.getTime(); local
    [all...]
AbstractQueuedSynchronizer.java 2094 long abstime = deadline.getTime(); local
    [all...]

Completed in 451 milliseconds

1 23