Home
last modified time | relevance | path

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

/aosp_15_r20/frameworks/base/core/java/android/os/SemiConcurrentMessageQueue/
H A DMessageQueue.java386 MessageNode asyncMsgNode = null;
390 asyncMsgNode = mAsyncPriorityQueue.peek();
394 || (asyncMsgNode != null && asyncMsgNode.getWhen() <= now)) {
542 MessageNode asyncMsgNode = mAsyncPriorityQueue.peek();
552 if (asyncMsgNode != null) {
553 Message msg = asyncMsgNode.mMessage;
555 + " seq: " + asyncMsgNode.mInsertSeq + "barrier: "
556 + asyncMsgNode.isBarrier() + " now: "
579 if (asyncMsgNode != null && now >= asyncMsgNode.getWhen()) {
580 found = asyncMsgNode;
[all …]
/aosp_15_r20/frameworks/base/core/java/android/os/ConcurrentMessageQueue/
H A DMessageQueue.java438 MessageNode asyncMsgNode = null;
448 asyncMsgNode = mAsyncPriorityQueue.first();
453 || (asyncMsgNode != null && asyncMsgNode.getWhen() <= now)) {
633 MessageNode asyncMsgNode = iterateNext(asyncQueueIter);
642 if (asyncMsgNode != null) {
643 Message msg = asyncMsgNode.mMessage;
645 + " seq: " + asyncMsgNode.mInsertSeq + "barrier: "
646 + asyncMsgNode.isBarrier() + " now: "
668 if (asyncMsgNode != null && now >= asyncMsgNode.getWhen()) {
669 found = asyncMsgNode;
[all …]
/aosp_15_r20/frameworks/base/core/java/android/os/CombinedMessageQueue/
H A DMessageQueue.java256 MessageNode asyncMsgNode = null; in isIdle() local
266 asyncMsgNode = mAsyncPriorityQueue.first(); in isIdle()
271 || (asyncMsgNode != null && asyncMsgNode.getWhen() <= now)) { in isIdle()
597 MessageNode asyncMsgNode = iterateNext(asyncQueueIter); in nextMessage() local
606 if (asyncMsgNode != null) { in nextMessage()
607 Message msg = asyncMsgNode.mMessage; in nextMessage()
609 + " seq: " + asyncMsgNode.mInsertSeq + "barrier: " in nextMessage()
610 + asyncMsgNode.isBarrier() + " now: " in nextMessage()
632 if (asyncMsgNode != null && now >= asyncMsgNode.getWhen()) { in nextMessage()
633 found = asyncMsgNode; in nextMessage()
[all …]