HomeSort by relevance Sort by last modified time
    Searched refs:mMonotonicTs (Results 1 - 2 of 2) sorted by null

  /frameworks/av/include/cpustats/
ThreadCpuUsage.h 46 // mMonotonicTs
126 struct timespec mMonotonicTs; // most recent monotonic time
127 bool mMonotonicKnown; // whether mMonotonicTs has been set
  /frameworks/av/media/libcpustats/
ThreadCpuUsage.cpp 48 rc = clock_gettime(CLOCK_MONOTONIC, &mMonotonicTs);
138 // mMonotonicTs is updated only at first enable and resetStatistics
139 elapsed = (ts.tv_sec - mMonotonicTs.tv_sec) * 1000000000LL +
140 (ts.tv_nsec - mMonotonicTs.tv_nsec);
155 rc = clock_gettime(CLOCK_MONOTONIC, &mMonotonicTs);

Completed in 233 milliseconds