Home | History | Annotate | Download | only in surfaceflinger

Lines Matching refs:mFrameRecords

43     mFrameRecords[mOffset].desiredPresentTime = presentTime;
48 mFrameRecords[mOffset].frameReadyTime = readyTime;
53 mFrameRecords[mOffset].frameReadyFence = readyFence;
59 mFrameRecords[mOffset].actualPresentTime = presentTime;
64 mFrameRecords[mOffset].actualPresentFence = readyFence;
81 mFrameRecords[mOffset].desiredPresentTime = INT64_MAX;
82 mFrameRecords[mOffset].frameReadyTime = INT64_MAX;
83 mFrameRecords[mOffset].actualPresentTime = INT64_MAX;
85 if (mFrameRecords[mOffset].frameReadyFence != NULL) {
88 mFrameRecords[mOffset].frameReadyFence = NULL;
92 if (mFrameRecords[mOffset].actualPresentFence != NULL) {
95 mFrameRecords[mOffset].actualPresentFence = NULL;
107 mFrameRecords[i].desiredPresentTime = 0;
108 mFrameRecords[i].frameReadyTime = 0;
109 mFrameRecords[i].actualPresentTime = 0;
110 mFrameRecords[i].frameReadyFence.clear();
111 mFrameRecords[i].actualPresentFence.clear();
114 mFrameRecords[mOffset].desiredPresentTime = INT64_MAX;
115 mFrameRecords[mOffset].frameReadyTime = INT64_MAX;
116 mFrameRecords[mOffset].actualPresentTime = INT64_MAX;
130 if (mFrameRecords[index].desiredPresentTime == 0) {
134 nsecs_t desiredPresentTimeNano = mFrameRecords[index].desiredPresentTime;
137 nsecs_t actualPresentTimeNano = mFrameRecords[index].actualPresentTime;
140 nsecs_t frameReadyTimeNano = mFrameRecords[index].frameReadyTime;
152 FrameRecord* records = const_cast<FrameRecord*>(mFrameRecords);
194 mFrameRecords[newFrameIdx].actualPresentTime;
196 mFrameRecords[prevFrameIdx].actualPresentTime;
232 return mFrameRecords[idx].actualPresentTime > 0 &&
233 mFrameRecords[idx].actualPresentTime < INT64_MAX;
244 mFrameRecords[index].desiredPresentTime,
245 mFrameRecords[index].actualPresentTime,
246 mFrameRecords[index].frameReadyTime);