OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mMonotonicTs
(Results
1 - 2
of
2
) sorted by null
/frameworks/av/media/libcpustats/
ThreadCpuUsage.cpp
53
rc = clock_gettime(CLOCK_MONOTONIC, &
mMonotonicTs
);
143
//
mMonotonicTs
is updated only at first enable and resetStatistics
144
elapsed = (ts.tv_sec -
mMonotonicTs
.tv_sec) * 1000000000LL +
145
(ts.tv_nsec -
mMonotonicTs
.tv_nsec);
160
rc = clock_gettime(CLOCK_MONOTONIC, &
mMonotonicTs
);
/frameworks/av/media/libcpustats/include/cpustats/
ThreadCpuUsage.h
46
//
mMonotonicTs
126
struct timespec
mMonotonicTs
; // most recent monotonic time
127
bool mMonotonicKnown; // whether
mMonotonicTs
has been set
Completed in 186 milliseconds