Home
last modified time | relevance | path

Searched refs:CLOCK_MONOTONIC (Results 1 – 12 of 12) sorted by relevance

/bionic/libc/kernel/uapi/linux/
Dtime.h50 #define CLOCK_MONOTONIC 1 macro
62 #define CLOCKS_MASK (CLOCK_REALTIME | CLOCK_MONOTONIC)
63 #define CLOCKS_MONO CLOCK_MONOTONIC
/bionic/benchmarks/
Dtime_benchmark.cpp29 clock_gettime(CLOCK_MONOTONIC, &t); in BM_time_clock_gettime()
38 syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &t); in BM_time_clock_gettime_syscall()
92 clock_getres(CLOCK_MONOTONIC, &t); in BM_time_clock_getres()
101 syscall(__NR_clock_getres, CLOCK_MONOTONIC, &t); in BM_time_clock_getres_syscall()
/bionic/libc/bionic/
Dpthread_cond.cpp94 if (clock != CLOCK_MONOTONIC && clock != CLOCK_REALTIME) { in pthread_condattr_setclock()
242 case CLOCK_MONOTONIC: in pthread_cond_clockwait()
267 absolute_timespec_from_timespec(ts, *rel_timeout, CLOCK_MONOTONIC); in pthread_cond_timedwait_relative_np()
Dbionic_time_conversions.cpp59 clock_gettime(CLOCK_MONOTONIC, &cur_monotonic_time); in monotonic_time_from_realtime_time()
Dpthread_rwlock.cpp435 case CLOCK_MONOTONIC: in pthread_rwlock_clockrdlock()
473 case CLOCK_MONOTONIC: in pthread_rwlock_clockwrlock()
Dsemaphore.cpp280 case CLOCK_MONOTONIC: in sem_clockwait()
Dpthread_mutex.cpp952 absolute_timespec_from_timespec(abs_timeout, ts, CLOCK_MONOTONIC); in pthread_mutex_lock_timeout_np()
995 case CLOCK_MONOTONIC: in pthread_mutex_clocklock()
/bionic/tests/
Dpthread_test.cpp983 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST()
995 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST()
998 return pthread_rwlock_clockwrlock(lock, CLOCK_MONOTONIC, &ts); in TEST()
1050 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST()
1062 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST()
1065 return pthread_rwlock_clockrdlock(lock, CLOCK_MONOTONIC, &ts); in TEST()
1131 pthread_rwlock_timedrdlock_timeout_helper(CLOCK_MONOTONIC, in TEST()
1141 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST()
1142 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST()
1199 pthread_rwlock_timedwrlock_timeout_helper(CLOCK_MONOTONIC, in TEST()
[all …]
Dtime_test.cpp481 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, &se, &timer_id)); in TEST()
511 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, &se, &timer_id)); in TEST()
625 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, nullptr, &timer_id)); in TEST()
764 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts0)); in TEST()
765 ASSERT_EQ(0, syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts1)); in TEST()
766 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts2)); in TEST()
786 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST()
820 ASSERT_EQ(0, clock_getres(CLOCK_MONOTONIC, &ts)); in TEST()
921 ASSERT_EQ(0, clock_nanosleep(CLOCK_MONOTONIC, 0, &ts, nullptr)); in TEST()
/bionic/libc/upstream-openbsd/lib/libc/net/
Dres_random.c222 clock_gettime(CLOCK_MONOTONIC, &ts); in res_initid()
235 clock_gettime(CLOCK_MONOTONIC, &ts); in __res_randomid()
/bionic/tests/headers/posix/
Dtime_h.c69 MACRO(CLOCK_MONOTONIC); in time_h()
/bionic/libc/upstream-netbsd/lib/libc/isc/
Dev_timers.c130 #ifdef CLOCK_MONOTONIC in evNowTime()
133 m = CLOCK_MONOTONIC; in evNowTime()