Searched refs:mMonotonicTs (Results 1 - 2 of 2) sorted by relevance

/frameworks/native/include/cpustats/
H A DThreadCpuUsage.h46 // mMonotonicTs
126 struct timespec mMonotonicTs; // most recent monotonic time member in class:android::ThreadCpuUsage
127 bool mMonotonicKnown; // whether mMonotonicTs has been set
/frameworks/native/libs/cpustats/
H A DThreadCpuUsage.cpp48 rc = clock_gettime(CLOCK_MONOTONIC, &mMonotonicTs);
139 // mMonotonicTs is updated only at first enable and resetStatistics
140 elapsed = (ts.tv_sec - mMonotonicTs.tv_sec) * 1000000000LL +
141 (ts.tv_nsec - mMonotonicTs.tv_nsec);
156 rc = clock_gettime(CLOCK_MONOTONIC, &mMonotonicTs);

Completed in 582 milliseconds