Home
last modified time | relevance | path

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

/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DAnrMonitor.java54 private final Queue<Long> mEventQueue = new ArrayDeque<>(0); field in AnrMonitor
81 synchronized (mEventQueue) { in close()
82 mEventQueue.notifyAll(); in close()
120 synchronized (mEventQueue) { in waitForAnrAndReturnUptime()
122 if (mEventQueue.size() == 0) { in waitForAnrAndReturnUptime()
133 mEventQueue.wait(waitTime); in waitForAnrAndReturnUptime()
138 final Long uptime = mEventQueue.poll(); in waitForAnrAndReturnUptime()
185 synchronized (mEventQueue) { in threadMain()
186 mEventQueue.add(SystemClock.uptimeMillis()); in threadMain()
187 mEventQueue.notifyAll(); in threadMain()
/cts/tests/tests/openglperf/src/android/openglperf/cts/
DGLSurfaceViewCustom.java1305 if (! mEventQueue.isEmpty()) { in guardedRun()
1306 event = mEventQueue.remove(0); in guardedRun()
1736 mEventQueue.add(r); in queueEvent()
1758 private ArrayList<Runnable> mEventQueue = new ArrayList<Runnable>(); field in GLSurfaceViewCustom.GLThread