Searched refs:__ts (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/include/ |
D | semaphore.h | 48 int sem_clockwait(sem_t* __sem, clockid_t __clock, const struct timespec* __ts) __INTRODUCED_IN(30); 53 int sem_timedwait(sem_t* __sem, const struct timespec* __ts); 62 int sem_timedwait_monotonic_np(sem_t* __sem, const struct timespec* __ts) __INTRODUCED_IN(28);
|
D | time.h | 97 int clock_gettime(clockid_t __clock, struct timespec* __ts); 99 int clock_settime(clockid_t __clock, const struct timespec* __ts); 104 int timer_gettime(timer_t __timer, struct itimerspec* __ts); 112 int timespec_get(struct timespec* __ts, int __base) __INTRODUCED_IN(29);
|
/bionic/tests/ |
D | semaphore_test.cpp | 105 int (*wait_function)(sem_t* __sem, const timespec* __ts)) { in sem_timedwait_helper() argument 150 sem_timedwait_helper(CLOCK_MONOTONIC, [](sem_t* __sem, const timespec* __ts) { in TEST() argument 151 return sem_clockwait(__sem, CLOCK_MONOTONIC, __ts); in TEST() 153 sem_timedwait_helper(CLOCK_REALTIME, [](sem_t* __sem, const timespec* __ts) { in TEST() argument 154 return sem_clockwait(__sem, CLOCK_REALTIME, __ts); in TEST()
|