Home
last modified time | relevance | path

Searched refs:startTimes (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DBigPictureStatsManager.kt49 private val startTimes = ConcurrentHashMap<String, Long>() in <lambda>() constant
66 if (startTimes.contains(key)) { in <lambda>()
71 startTimes[key] = System.nanoTime() in <lambda>()
76 startTimes.remove(key) in <lambda>()
87 startTimes.remove(key) in <lambda>()
/frameworks/native/libs/gui/
DChoreographer.cpp403 while (gChoreographers.startTimes.size() >= kMaxStartTimes) { in registerStartTime()
404 gChoreographers.startTimes.erase(gChoreographers.startTimes.begin()); in registerStartTime()
406 gChoreographers.startTimes[frameTimeline.vsyncId] = systemTime(SYSTEM_TIME_MONOTONIC); in registerStartTime()
420 const auto iter = gChoreographers.startTimes.find(vsyncId); in getStartTimeNanosForVsyncId()
421 if (iter == gChoreographers.startTimes.end()) { in getStartTimeNanosForVsyncId()
/frameworks/native/libs/gui/include/gui/
DChoreographer.h75 std::map<AVsyncId, int64_t> startTimes GUARDED_BY(lock);