Searched refs:ts_now (Results 1 – 2 of 2) sorted by relevance
31 struct timespec ts_now = {}; in time_get_os_boottime_us() local32 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()
262 struct timespec ts_now = {}; in capture() local263 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()