Home
last modified time | relevance | path

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

/system/bt/common/
Dtime_util.cc31 struct timespec ts_now = {}; in time_get_os_boottime_us() local
32 clock_gettime(CLOCK_BOOTTIME, &ts_now); in time_get_os_boottime_us()
34 return ((uint64_t)ts_now.tv_sec * 1000000L) + in time_get_os_boottime_us()
35 ((uint64_t)ts_now.tv_nsec / 1000); in time_get_os_boottime_us()
/system/bt/hci/src/
Dbtsnoop.cc262 struct timespec ts_now = {}; in capture() local
263 clock_gettime(CLOCK_REALTIME, &ts_now); in capture()
265 ((uint64_t)ts_now.tv_sec * 1000000L) + ((uint64_t)ts_now.tv_nsec / 1000); in capture()