Home
last modified time | relevance | path

Searched refs:beyondCount (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastRecord.java156 int beyondCount; // high-water number of receivers we've moved beyond. field in BroadcastRecord
748 final int oldBeyondCount = beyondCount; in setDeliveryState()
749 if (index >= beyondCount) { in setDeliveryState()
750 for (int i = beyondCount; i < delivery.length; i++) { in setDeliveryState()
752 beyondCount = i + 1; in setDeliveryState()
758 return (beyondCount != oldBeyondCount); in setDeliveryState()
770 return (beyondCount < blockedUntilBeyondCount[index]); in isBlocked()
H A DBroadcastProcessQueue.java1494 pw.print(record.beyondCount); in dumpRecord()
H A DBroadcastQueueModernImpl.java1415 if (r.beyondCount == r.receivers.size()) { in setDeliveryState()
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/am/
H A DBroadcastRecordTest.java986 assertEquals("beyond", expectedBeyondCount, r.beyondCount); in assertTerminalDeferredBeyond()