Searched refs:CLOCK_MONOTONIC (Results 1 – 14 of 14) sorted by relevance
/bionic/libc/kernel/uapi/linux/ |
D | time.h | 47 #define CLOCK_MONOTONIC 1 macro 59 #define CLOCKS_MASK (CLOCK_REALTIME | CLOCK_MONOTONIC) 60 #define CLOCKS_MONO CLOCK_MONOTONIC
|
/bionic/benchmarks/ |
D | time_benchmark.cpp | 44 clock_gettime(CLOCK_MONOTONIC, &t); in BM_time_clock_gettime() 53 syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &t); in BM_time_clock_gettime_syscall() 107 clock_getres(CLOCK_MONOTONIC, &t); in BM_time_clock_getres() 116 syscall(__NR_clock_getres, CLOCK_MONOTONIC, &t); in BM_time_clock_getres_syscall()
|
/bionic/tests/ |
D | pthread_test.cpp | 1012 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST() 1024 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST() 1027 return pthread_rwlock_clockwrlock(lock, CLOCK_MONOTONIC, &ts); in TEST() 1079 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST() 1091 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST() 1094 return pthread_rwlock_clockrdlock(lock, CLOCK_MONOTONIC, &ts); in TEST() 1160 pthread_rwlock_timedrdlock_timeout_helper(CLOCK_MONOTONIC, in TEST() 1170 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() 1171 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST() 1228 pthread_rwlock_timedwrlock_timeout_helper(CLOCK_MONOTONIC, in TEST() [all …]
|
D | semaphore_test.cpp | 146 sem_timedwait_helper(CLOCK_MONOTONIC, sem_timedwait_monotonic_np); in TEST() 154 sem_timedwait_helper(CLOCK_MONOTONIC, [](sem_t* __sem, const timespec* __ts) { in TEST() 155 return sem_clockwait(__sem, CLOCK_MONOTONIC, __ts); in TEST()
|
D | time_test.cpp | 626 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, &se, &timer_id)); in TEST() 656 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, &se, &timer_id)); in TEST() 770 ASSERT_EQ(0, timer_create(CLOCK_MONOTONIC, nullptr, &timer_id)); in TEST() 914 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts0)); in TEST() 915 ASSERT_EQ(0, syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts1)); in TEST() 916 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts2)); in TEST() 936 ASSERT_EQ(0, clock_gettime(CLOCK_MONOTONIC, &ts)); in TEST() 970 ASSERT_EQ(0, clock_getres(CLOCK_MONOTONIC, &ts)); in TEST() 1075 ASSERT_EQ(0, clock_nanosleep(CLOCK_MONOTONIC, 0, &ts, nullptr)); in TEST()
|
/bionic/libc/bionic/ |
D | pthread_cond.cpp | 94 if (clock != CLOCK_MONOTONIC && clock != CLOCK_REALTIME) { in pthread_condattr_setclock() 242 case CLOCK_MONOTONIC: in pthread_cond_clockwait() 270 absolute_timespec_from_timespec(ts, *rel_timeout, CLOCK_MONOTONIC); in pthread_cond_timedwait_relative_np()
|
D | bionic_time_conversions.cpp | 59 clock_gettime(CLOCK_MONOTONIC, &cur_monotonic_time); in monotonic_time_from_realtime_time()
|
D | pthread_rwlock.cpp | 435 case CLOCK_MONOTONIC: in pthread_rwlock_clockrdlock() 473 case CLOCK_MONOTONIC: in pthread_rwlock_clockwrlock()
|
D | semaphore.cpp | 280 case CLOCK_MONOTONIC: in sem_clockwait()
|
D | pthread_mutex.cpp | 954 absolute_timespec_from_timespec(abs_timeout, ts, CLOCK_MONOTONIC); in pthread_mutex_lock_timeout_np() 997 case CLOCK_MONOTONIC: in pthread_mutex_clocklock()
|
/bionic/libc/upstream-openbsd/lib/libc/net/ |
D | res_random.c | 222 clock_gettime(CLOCK_MONOTONIC, &ts); in res_initid() 235 clock_gettime(CLOCK_MONOTONIC, &ts); in __res_randomid()
|
/bionic/tests/headers/posix/ |
D | time_h.c | 69 MACRO(CLOCK_MONOTONIC); in time_h()
|
/bionic/libc/upstream-netbsd/lib/libc/isc/ |
D | ev_timers.c | 130 #ifdef CLOCK_MONOTONIC in evNowTime() 133 m = CLOCK_MONOTONIC; in evNowTime()
|
/bionic/libc/malloc_debug/ |
D | malloc_debug.cpp | 74 clock_gettime(CLOCK_MONOTONIC, &t); in Nanotime()
|