HomeSort by relevance Sort by last modified time
    Searched full:abstime (Results 76 - 100 of 150) sorted by null

1 2 34 5 6

  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/
pthread.h 189 const struct timespec *abstime);
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
197 const struct timespec *abstime);
204 const struct timespec *abstime);
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
pthread.h 189 const struct timespec *abstime);
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
197 const struct timespec *abstime);
204 const struct timespec *abstime);
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
pthread.h 189 const struct timespec *abstime);
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
197 const struct timespec *abstime);
204 const struct timespec *abstime);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
pthread.h 189 const struct timespec *abstime);
191 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
197 const struct timespec *abstime);
204 const struct timespec *abstime);
  /development/ndk/platforms/android-3/include/
pthread.h 182 const struct timespec *abstime);
184 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
190 const struct timespec *abstime);
  /prebuilts/ndk/4/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/4/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/4/platforms/android-5/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/5/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-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);
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/
pthread.h 182 const struct timespec *abstime);
184 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
190 const struct timespec *abstime);
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/
pthread.h 182 const struct timespec *abstime);
184 /* BIONIC: same as pthread_cond_timedwait, except the 'abstime' given refers
190 const struct timespec *abstime);
  /external/lldb/include/lldb/Host/
Condition.h 76 /// If \a abstime is non-NULL, this function will return when the
77 /// system time reaches the time specified in \a abstime if the
78 /// condition variable doesn't get unblocked. If \a abstime is NULL
89 /// @param[in] abstime
102 Wait (Mutex &mutex, const TimeValue *abstime = NULL, bool *timed_out = NULL);
  /external/bluetooth/bluedroid/gki/ulinux/
gki_ulinux.c 766 struct timespec abstime = { 0, 0 }; local
784 clock_gettime(CLOCK_MONOTONIC, &abstime);
789 abstime.tv_nsec += nano_sec;
790 if (abstime.tv_nsec > NSEC_PER_SEC)
792 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
793 abstime.tv_nsec = abstime.tv_nsec % NSEC_PER_SEC;
795 abstime.tv_sec += sec;
798 &gki_cb.os.thread_evt_mutex[rtask], &abstime);
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
threads_windows.c 178 const struct timespec *abstime) {
196 TIMESPEC_TO_TIMEVAL(&targ_time, abstime);
198 if(delta_time.tv_sec < 0) // abstime already passed?
threads_windows.h 81 const struct timespec *abstime);
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c 644 struct timespec abstime = { 0, 0 }; local
692 // abstime.tv_sec = currSysTime.time;
693 // abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
694 clock_gettime(CLOCK_MONOTONIC, &abstime);
699 abstime.tv_nsec += nano_sec;
700 if (abstime.tv_nsec > NSEC_PER_SEC)
702 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
703 abstime.tv_nsec = abstime.tv_nsec % NSEC_PER_SEC
    [all...]
  /external/libnfc-nci/src/gki/ulinux/
gki_ulinux.c 621 struct timespec abstime = { 0, 0 }; local
669 // abstime.tv_sec = currSysTime.time;
670 // abstime.tv_nsec = NANOSEC_PER_MILLISEC * currSysTime.millitm;
671 clock_gettime(CLOCK_MONOTONIC, &abstime);
676 abstime.tv_nsec += nano_sec;
677 if (abstime.tv_nsec > NSEC_PER_SEC)
679 abstime.tv_sec += (abstime.tv_nsec / NSEC_PER_SEC);
680 abstime.tv_nsec = abstime.tv_nsec % NSEC_PER_SEC
    [all...]

Completed in 1802 milliseconds

1 2 34 5 6