Home
last modified time | relevance | path

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

/aosp12/frameworks/native/services/inputflinger/dispatcher/
H A DLatencyTracker.cpp72 const auto it = mTimelines.find(inputEventId); in trackListener()
73 if (it != mTimelines.end()) { in trackListener()
78 mTimelines.erase(it); in trackListener()
91 const auto it = mTimelines.find(inputEventId); in trackFinishedEvent()
92 if (it == mTimelines.end()) { in trackFinishedEvent()
121 const auto it = mTimelines.find(inputEventId); in trackGraphicsLatency()
122 if (it == mTimelines.end()) { in trackGraphicsLatency()
155 LOG_ALWAYS_FATAL_IF(it == mTimelines.end(), in reportAndPruneMatureRecords()
160 mTimelines.erase(it); in reportAndPruneMatureRecords()
170 for (const auto& [inputEventId, timeline] : mTimelines) { in reportNow()
[all …]
H A DLatencyTracker.h70 std::unordered_map<int32_t /*inputEventId*/, InputEventTimeline> mTimelines;
/aosp12/frameworks/base/tests/Input/src/com/android/test/input/
H A DInputEventSenderAndReceiverTest.kt81 private val mTimelines = LinkedBlockingQueue<Timeline>() regex
88 mTimelines.put(Timeline(inputEventId, gpuCompletedTime, presentTime))
96 return getEvent(mTimelines)