Searched defs:now_ts (Results 1 - 2 of 2) sorted by relevance

/system/update_engine/common/
H A Dclock.cc28 struct timespec now_ts; local
29 if (clock_gettime(CLOCK_MONOTONIC_RAW, &now_ts) != 0) {
38 now_tv.tv_sec = now_ts.tv_sec;
39 now_tv.tv_usec = now_ts.tv_nsec/base::Time::kNanosecondsPerMicrosecond;
44 struct timespec now_ts; local
45 if (clock_gettime(CLOCK_BOOTTIME, &now_ts) != 0) {
53 now_tv.tv_sec = now_ts.tv_sec;
54 now_tv.tv_usec = now_ts.tv_nsec/base::Time::kNanosecondsPerMicrosecond;
/system/media/audio_utils/include/audio_utils/
H A Dclock.h98 struct timespec now_ts; local
99 if (clock_gettime(CLOCK_REALTIME, &now_ts) == 0) {
100 return audio_utils_ns_from_timespec(&now_ts);

Completed in 293 milliseconds