Home
last modified time | relevance | path

Searched refs:dispatched (Results 1 – 9 of 9) sorted by relevance

/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DBroadcastQueue.md7 * **Normal** broadcast intents are dispatched to relevant receivers.
8 * **Ordered** broadcast intents are dispatched in a specific order to
11 * **Sticky** broadcast intents are dispatched to relevant receivers, and are
74 After each broadcast is dispatched to a given process, we consider dispatching
91 * An "urgent" broadcast dispatched to a process with a large backlog of
H A DBroadcastProcessQueue.java961 final boolean dispatched = isDispatchedInQueue(mPending, intent); in isDispatched()
965 return (activeDispatched && dispatched && urgentDispatched && offloadDispatched) in isDispatched()
/aosp14/frameworks/base/core/java/android/view/
H A DInternalInsetsAnimationController.java30 void setReadyDispatched(boolean dispatched); in setReadyDispatched() argument
H A DInsetsResizeAnimationRunner.java233 public void setReadyDispatched(boolean dispatched) { in setReadyDispatched() argument
H A DInsetsAnimationControlImpl.java190 public void setReadyDispatched(boolean dispatched) { in setReadyDispatched() argument
191 mReadyDispatched = dispatched; in setReadyDispatched()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/external/
H A DTileServiceRequestController.kt183 private val dispatched = AtomicBoolean(false) regex
186 if (dispatched.compareAndSet(false, true)) {
/aosp14/frameworks/base/packages/SystemUI/docs/
H A Dbroadcasts.md29 * Broadcasts will be dispatched on the main thread (same as `system_server`) by default but a `Hand…
61 * @param filter A filter to determine what broadcasts should be dispatched to this receiver.
66 * @param user A user handle to determine which broadcast should be dispatched to this receiver.
/aosp14/frameworks/base/core/proto/android/server/alarm/
H A Dalarmmanagerservice.proto122 // For each uid, this is the last time we dispatched an "allow while idle"
262 // For a RESCHEDULED op, this is the last time we dispatched an "allow while
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
H A DBubbleStackView.java2606 boolean dispatched = super.dispatchTouchEvent(ev); in dispatchTouchEvent()
2613 if (!dispatched && !mIsExpanded && mIsGestureInProgress) { in dispatchTouchEvent()
2614 dispatched = mBubbleTouchListener.onTouch(this /* view */, ev); in dispatchTouchEvent()
2621 return dispatched; in dispatchTouchEvent()