Searched refs:mEventQueue (Results 1 – 2 of 2) sorted by relevance
54 private final Queue<Long> mEventQueue = new ArrayDeque<>(0); field in AnrMonitor81 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()
1305 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