Home
last modified time | relevance | path

Searched refs:mScheduleTiming (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/services/surfaceflinger/Scheduler/
DVSyncDispatchTimerQueue.cpp113 mScheduleTiming = timing; in schedule()
132 mScheduleTiming = *mWorkloadUpdateInfo; in update()
136 const auto earliestReadyBy = now + mScheduleTiming.workDuration + mScheduleTiming.readyDuration; in update()
137 const auto earliestVsync = std::max(earliestReadyBy, mScheduleTiming.earliestVsync); in update()
140 const auto nextReadyTime = nextVsyncTime - mScheduleTiming.readyDuration; in update()
141 const auto nextWakeupTime = nextReadyTime - mScheduleTiming.workDuration; in update()
191 mScheduleTiming.workDuration / 1e6f, mScheduleTiming.readyDuration / 1e6f, in dump()
192 (mScheduleTiming.earliestVsync - systemTime()) / 1e6f); in dump()
DVSyncDispatchTimerQueue.h90 VSyncDispatch::ScheduleTiming mScheduleTiming; variable