Searched refs:mOldTs (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/services/audioflinger/
H A DAudioWatchdog.cpp63 mOldTs = newTs;
67 time_t sec = newTs.tv_sec - mOldTs.tv_sec;
68 long nsec = newTs.tv_nsec - mOldTs.tv_nsec;
73 mOldTs = newTs;
H A DFastThread.cpp41 /* mOldTs({0, 0}), */
76 mOldTs.tv_sec = 0;
77 mOldTs.tv_nsec = 0;
183 mOldTsValid = !clock_gettime(CLOCK_MONOTONIC, &mOldTs);
218 time_t sec = newTs.tv_sec - mOldTs.tv_sec;
219 long nsec = newTs.tv_nsec - mOldTs.tv_nsec;
222 mOldTs.tv_sec, mOldTs.tv_nsec, newTs.tv_sec, newTs.tv_nsec);
349 mOldTs = newTs;
H A DAudioWatchdog.h46 // mOldTs
77 struct timespec mOldTs; // monotonic time when threadLoop last ran member in class:android::AudioWatchdog
79 bool mOldTsValid; // whether mOldTs is valid
H A DFastThread.h54 struct timespec mOldTs; member in class:android::FastThread

Completed in 200 milliseconds