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);
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 989 milliseconds