Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/
H A DControlActionCoordinatorImpl.kt65 private var pendingAction: Action? = null
172 if (pendingAction?.controlId == controlId) {
173 pendingAction?.invoke()
174 pendingAction = null
203 pendingAction = action
209 }, { pendingAction = null }, true /* afterKeyguardGone */)
/aosp14/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java1801 int pendingAction = mPendingAnimationActions.get(i); in transferPendingActions() local
1802 if (pendingAction == START_ANIMATION) { in transferPendingActions()
1804 } else if (pendingAction == END_ANIMATION) { in transferPendingActions()
1806 } else if (pendingAction == REVERSE_ANIMATION) { in transferPendingActions()
1808 } else if (pendingAction == RESET_ANIMATION) { in transferPendingActions()
1812 pendingAction + "is not supported"); in transferPendingActions()