Lines Matching refs:mFrameRecords

42     mFrameRecords[mOffset].desiredPresentTime = presentTime;  in setDesiredPresentTime()
47 mFrameRecords[mOffset].frameReadyTime = readyTime; in setFrameReadyTime()
53 mFrameRecords[mOffset].frameReadyFence = std::move(readyFence); in setFrameReadyFence()
59 mFrameRecords[mOffset].actualPresentTime = presentTime; in setActualPresentTime()
64 mFrameRecords[mOffset].actualPresentFence = readyFence; in setActualPresentFence()
81 mFrameRecords[mOffset].desiredPresentTime = INT64_MAX; in advanceFrame()
82 mFrameRecords[mOffset].frameReadyTime = INT64_MAX; in advanceFrame()
83 mFrameRecords[mOffset].actualPresentTime = INT64_MAX; in advanceFrame()
85 if (mFrameRecords[mOffset].frameReadyFence != nullptr) { in advanceFrame()
88 mFrameRecords[mOffset].frameReadyFence = nullptr; in advanceFrame()
92 if (mFrameRecords[mOffset].actualPresentFence != nullptr) { in advanceFrame()
95 mFrameRecords[mOffset].actualPresentFence = nullptr; in advanceFrame()
103 mFrameRecords[i].desiredPresentTime = 0; in clearStats()
104 mFrameRecords[i].frameReadyTime = 0; in clearStats()
105 mFrameRecords[i].actualPresentTime = 0; in clearStats()
106 mFrameRecords[i].frameReadyFence.reset(); in clearStats()
107 mFrameRecords[i].actualPresentFence.reset(); in clearStats()
110 mFrameRecords[mOffset].desiredPresentTime = INT64_MAX; in clearStats()
111 mFrameRecords[mOffset].frameReadyTime = INT64_MAX; in clearStats()
112 mFrameRecords[mOffset].actualPresentTime = INT64_MAX; in clearStats()
126 if (mFrameRecords[index].desiredPresentTime == 0) { in getStats()
130 nsecs_t desiredPresentTimeNano = mFrameRecords[index].desiredPresentTime; in getStats()
133 nsecs_t actualPresentTimeNano = mFrameRecords[index].actualPresentTime; in getStats()
136 nsecs_t frameReadyTimeNano = mFrameRecords[index].frameReadyTime; in getStats()
148 FrameRecord* records = const_cast<FrameRecord*>(mFrameRecords); in processFencesLocked()
191 mFrameRecords[newFrameIdx].actualPresentTime; in updateStatsLocked()
193 mFrameRecords[prevFrameIdx].actualPresentTime; in updateStatsLocked()
229 return mFrameRecords[idx].actualPresentTime > 0 && in isFrameValidLocked()
230 mFrameRecords[idx].actualPresentTime < INT64_MAX; in isFrameValidLocked()
241 mFrameRecords[index].desiredPresentTime, in dumpStats()
242 mFrameRecords[index].actualPresentTime, in dumpStats()
243 mFrameRecords[index].frameReadyTime); in dumpStats()