Home
last modified time | relevance | path

Searched refs:__ts (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/include/
Dsemaphore.h48 int sem_clockwait(sem_t* _Nonnull __sem, clockid_t __clock, const struct timespec* _Nonnull __ts) _…
53 int sem_timedwait(sem_t* _Nonnull __sem, const struct timespec* _Nonnull __ts);
62 int sem_timedwait_monotonic_np(sem_t* _Nonnull __sem, const struct timespec* _Nonnull __ts) __INTRO…
Dtime.h364 int clock_gettime(clockid_t __clock, struct timespec* _Nonnull __ts);
383 int clock_settime(clockid_t __clock, const struct timespec* _Nonnull __ts);
415 int timer_gettime(timer_t _Nonnull _timer, struct itimerspec* _Nonnull __ts);
462 int timespec_get(struct timespec* _Nonnull __ts, int __base) __INTRODUCED_IN(29);
472 int timespec_getres(struct timespec* _Nonnull __ts, int __base) __INTRODUCED_IN(35);
/bionic/tests/
Dsemaphore_test.cpp111 int (*wait_function)(sem_t* __sem, const timespec* __ts)) { in sem_timedwait_helper() argument
156 sem_timedwait_helper(CLOCK_MONOTONIC, [](sem_t* __sem, const timespec* __ts) { in TEST() argument
157 return sem_clockwait(__sem, CLOCK_MONOTONIC, __ts); in TEST()
159 sem_timedwait_helper(CLOCK_REALTIME, [](sem_t* __sem, const timespec* __ts) { in TEST() argument
160 return sem_clockwait(__sem, CLOCK_REALTIME, __ts); in TEST()