Searched refs:mTimers (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/media/libstagefright/ |
D | MediaClock.cpp | 67 auto it = mTimers.begin(); in reset() 68 while (it != mTimers.end()) { in reset() 71 it = mTimers.erase(it); in reset() 215 auto it = mTimers.begin(); in addTimer() 216 while (it != mTimers.end()) { in addTimer() 226 mTimers.emplace_back(notify, mediaTimeUs, adjustRealUs); in addTimer() 266 auto it = mTimers.begin(); in processTimers_l() 267 while (it != mTimers.end()) { in processTimers_l() 281 it = mTimers.erase(it); in processTimers_l() 301 if (mTimers.empty() || mPlaybackRate == 0.0 || mAnchorTimeMediaUs < 0 in processTimers_l()
|
/frameworks/rs/ |
D | rsContext.cpp | 123 mTimers[ct] = 0; in timerReset() 156 mTimers[mTimerActive] += mTimeLast - last; in timerSet() 163 total += mTimers[ct]; in timerPrint() 167 mTimeMSLastScript = mTimers[RS_TIMER_SCRIPT] / 1000000; in timerPrint() 168 mTimeMSLastSwap = mTimers[RS_TIMER_CLEAR_SWAP] / 1000000; in timerPrint() 175 100.0 * mTimers[RS_TIMER_SCRIPT] / total, mTimeMSLastScript, in timerPrint() 176 100.0 * mTimers[RS_TIMER_CLEAR_SWAP] / total, mTimeMSLastSwap, in timerPrint() 177 100.0 * mTimers[RS_TIMER_IDLE] / total, mTimers[RS_TIMER_IDLE] / 1000000, in timerPrint() 178 100.0 * mTimers[RS_TIMER_INTERNAL] / total, mTimers[RS_TIMER_INTERNAL] / 1000000, in timerPrint()
|
D | rsContext.h | 362 uint64_t mTimers[_RS_TIMER_TOTAL]; variable
|
/frameworks/av/media/libstagefright/include/media/stagefright/ |
D | MediaClock.h | 113 std::list<Timer> mTimers; member
|