HomeSort by relevance Sort by last modified time
    Searched full:pthread_cond_timedwait (Results 26 - 50 of 863) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/
libanl.so.1 
  /external/libchrome/base/synchronization/
condition_variable_posix.cc 92 // The timeout argument to pthread_cond_timedwait is in absolute time.
117 int rv = pthread_cond_timedwait(&condition_, user_mutex_, &absolute_time);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_timedwait/
do-plot 56 set output "pthread_cond_timedwait.png"
60 set title "pthread_cond_timedwait scalability"
  /external/swiftshader/third_party/LLVM/test/Linker/
2011-08-22-ResolveAlias.ll 29 @_ZL30__gthrw_pthread_cond_timedwaitP14pthread_cond_tP15pthread_mutex_tPK8timespec = alias weak i32 (%union.pthread_cond_t*, %union.pthread_mutex_t*, %struct.timespec*)* @pthread_cond_timedwait
75 declare extern_weak i32 @pthread_cond_timedwait(%union.pthread_cond_t*, %union.pthread_mutex_t*, %struct.timespec*)
2011-08-22-ResolveAlias2.ll 32 @_ZL30__gthrw_pthread_cond_timedwaitP14pthread_cond_tP15pthread_mutex_tPK8timespec = alias weak i32 (%union.pthread_cond_t*, %union.pthread_mutex_t*, %struct.timespec*)* @pthread_cond_timedwait
80 declare extern_weak i32 @pthread_cond_timedwait(%union.pthread_cond_t*, %union.pthread_mutex_t*, %struct.timespec*)
  /system/core/libbacktrace/
ThreadEntry.cpp 107 int ret = pthread_cond_timedwait(&wait_cond_, &wait_mutex_, &ts);
109 BACK_ASYNC_SAFE_LOGW("pthread_cond_timedwait for value %d failed: %s", value, strerror(ret));
  /external/ltp/testcases/kernel/sched/nptl/
nptl01.c 23 * TEST TITLE : NPTL test for pthread_cond_timedwait() error
31 * This is a test for a bug found in the pthread_cond_timedwait() system call.
151 if ((ret = pthread_cond_timedwait(cond, mutex, &ts)) != ETIMEDOUT) {
154 "Loop %d of 1000000: pthread_cond_timedwait() didn't timeout",
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
4-3.c 52 #define TIMEOUT (1000) /* ns, timeout parameter for pthread_cond_timedwait */
169 pthread_cond_timedwait(&(data.cnd), &(data.mtx),
175 FAILED("pthread_cond_timedwait returned EINTR");
180 "pthread_cond_timedwait returned an unexpected error");
  /external/v8/src/base/platform/
condition-variable.cc 21 // source for pthread_cond_timedwait() to use the monotonic clock.
97 // source for pthread_cond_timedwait() to use the monotonic clock.
102 // The timeout argument to pthread_cond_timedwait() is in absolute time.
108 result = pthread_cond_timedwait(
  /external/valgrind/drd/tests/
filter_stderr_solaris 35 'cond_timedwait' => 'pthread_cond_timedwait',
  /hardware/qcom/wlan/qcwcn/wifi_hal/
sync.h 81 return pthread_cond_timedwait(&mCondition, &mMutex, &abstime);
  /prebuilts/ndk/r10/platforms/android-5/arch-arm/usr/include/
pthread.h 180 int pthread_cond_timedwait(pthread_cond_t *cond,
184 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
201 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /prebuilts/ndk/r10/platforms/android-8/arch-arm/usr/include/
pthread.h 185 int pthread_cond_timedwait(pthread_cond_t *cond,
189 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
206 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /prebuilts/ndk/r11/platforms/android-5/arch-arm/usr/include/
pthread.h 180 int pthread_cond_timedwait(pthread_cond_t *cond,
184 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
201 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /prebuilts/ndk/r11/platforms/android-8/arch-arm/usr/include/
pthread.h 185 int pthread_cond_timedwait(pthread_cond_t *cond,
189 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
206 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /development/ndk/platforms/android-21/include/
pthread.h 174 int pthread_cond_timedwait(pthread_cond_t*, pthread_mutex_t*, const struct timespec*) __nonnull((1, 2, 3));
276 int pthread_cond_timedwait_relative_np(pthread_cond_t*, pthread_mutex_t*, const struct timespec*) /* TODO: __attribute__((deprecated("use pthread_cond_timedwait instead")))*/;
278 int pthread_cond_timeout_np(pthread_cond_t*, pthread_mutex_t*, unsigned) /* TODO: __attribute__((deprecated("use pthread_cond_timedwait instead")))*/;
  /development/ndk/platforms/android-9/include/
pthread.h 187 int pthread_cond_timedwait(pthread_cond_t *cond,
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
208 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /external/compiler-rt/lib/tsan/dd/
dd_interceptors.cc 193 INTERCEPTOR(int, pthread_cond_timedwait, pthread_cond_t *c, pthread_mutex_t *m,
199 int res = REAL(pthread_cond_timedwait)(cond, m, abstime);
319 INTERCEPT_FUNCTION_VER(pthread_cond_timedwait, "GLIBC_2.3.2");
  /prebuilts/ndk/r10/platforms/android-12/arch-arm/usr/include/
pthread.h 187 int pthread_cond_timedwait(pthread_cond_t *cond,
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
208 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /prebuilts/ndk/r10/platforms/android-12/arch-mips/usr/include/
pthread.h 187 int pthread_cond_timedwait(pthread_cond_t *cond,
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
208 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /prebuilts/ndk/r10/platforms/android-12/arch-x86/usr/include/
pthread.h 187 int pthread_cond_timedwait(pthread_cond_t *cond,
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
208 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /prebuilts/ndk/r10/platforms/android-13/arch-arm/usr/include/
pthread.h 187 int pthread_cond_timedwait(pthread_cond_t *cond,
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
208 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /prebuilts/ndk/r10/platforms/android-13/arch-mips/usr/include/
pthread.h 187 int pthread_cond_timedwait(pthread_cond_t *cond,
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
208 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /prebuilts/ndk/r10/platforms/android-13/arch-x86/usr/include/
pthread.h 187 int pthread_cond_timedwait(pthread_cond_t *cond,
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
208 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers
  /prebuilts/ndk/r10/platforms/android-14/arch-arm/usr/include/
pthread.h 187 int pthread_cond_timedwait(pthread_cond_t *cond,
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
208 /* BIONIC: same as pthread_cond_timedwait, except the 'reltime' given refers

Completed in 551 milliseconds

12 3 4 5 6 7 8 91011>>