Home
last modified time | relevance | path

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

/frameworks/av/services/audioflinger/
DFastThread.cpp79 mOldTs.tv_sec = 0; in FastThread()
80 mOldTs.tv_nsec = 0; in FastThread()
192 mOldTsValid = !clock_gettime(CLOCK_MONOTONIC, &mOldTs); in threadLoop()
226 time_t sec = newTs.tv_sec - mOldTs.tv_sec; in threadLoop()
227 long nsec = newTs.tv_nsec - mOldTs.tv_nsec; in threadLoop()
230 mOldTs.tv_sec, mOldTs.tv_nsec, newTs.tv_sec, newTs.tv_nsec); in threadLoop()
364 mOldTs = newTs; in threadLoop()
DAudioWatchdog.cpp63 mOldTs = newTs; in threadLoop()
67 time_t sec = newTs.tv_sec - mOldTs.tv_sec; in threadLoop()
68 long nsec = newTs.tv_nsec - mOldTs.tv_nsec; in threadLoop()
73 mOldTs = newTs; in threadLoop()
DAudioWatchdog.h77 struct timespec mOldTs; // monotonic time when threadLoop last ran variable
DFastThread.h54 struct timespec mOldTs; variable