Searched defs:abstime (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/bionic/
H A Dpthread.c1398 /* initialize 'ts' with the difference between 'abstime' and the current time
1399 * according to 'clock'. Returns -1 if abstime already expired, or 0 otherwise.
1402 __timespec_to_absolute(struct timespec* ts, const struct timespec* abstime, clockid_t clock) argument
1405 ts->tv_sec = abstime->tv_sec - ts->tv_sec;
1406 ts->tv_nsec = abstime->tv_nsec - ts->tv_nsec;
1417 /* initialize 'abstime' to the current time according to 'clock' plus 'msecs'
1421 __timespec_to_relative_msec(struct timespec* abstime, unsigned msecs, clockid_t clock) argument
1423 clock_gettime(clock, abstime);
1424 abstime->tv_sec += msecs/1000;
1425 abstime
1436 struct timespec abstime; local
1723 __pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t * mutex, const struct timespec *abstime, clockid_t clock) argument
1742 pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t * mutex, const struct timespec *abstime) argument
1751 pthread_cond_timedwait_monotonic(pthread_cond_t *cond, pthread_mutex_t * mutex, const struct timespec *abstime) argument
1758 pthread_cond_timedwait_monotonic_np(pthread_cond_t *cond, pthread_mutex_t * mutex, const struct timespec *abstime) argument
[all...]

Completed in 248 milliseconds