Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/common/
Dtime_util.cc39 struct timespec ts_now = {}; in time_get_os_boottime_us() local
40 clock_gettime(CLOCK_BOOTTIME, &ts_now); in time_get_os_boottime_us()
42 return ((uint64_t)ts_now.tv_sec * 1000000L) + in time_get_os_boottime_us()
43 ((uint64_t)ts_now.tv_nsec / 1000); in time_get_os_boottime_us()
54 struct timespec ts_now = {}; in time_get_os_monotonic_raw_us() local
55 clock_gettime(CLOCK_MONOTONIC_RAW, &ts_now); in time_get_os_monotonic_raw_us()
57 return ((uint64_t)ts_now.tv_sec * 1000000L) + in time_get_os_monotonic_raw_us()
58 ((uint64_t)ts_now.tv_nsec / 1000); in time_get_os_monotonic_raw_us()