Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/app/servertransaction/
H A DRefreshCallbackItem.java82 public static RefreshCallbackItem obtain(@LifecycleState int postExecutionState) { in obtain() argument
83 if (postExecutionState != ON_STOP && postExecutionState != ON_PAUSE) { in obtain()
86 + "RefreshCallbackItem but got " + postExecutionState); in obtain()
93 instance.mPostExecutionState = postExecutionState; in obtain()
H A DTransactionExecutorHelper.java141 int postExecutionState) { in getClosestPreExecutionState() argument
142 switch (postExecutionState) { in getClosestPreExecutionState()
149 + postExecutionState + " is not supported."); in getClosestPreExecutionState()
250 final int postExecutionState = callback.getPostExecutionState(); in lastCallbackRequestingState() local
251 if (postExecutionState != UNDEFINED) { in lastCallbackRequestingState()
253 if (lastRequestedState == UNDEFINED || lastRequestedState == postExecutionState) { in lastCallbackRequestingState()
257 lastRequestedState = postExecutionState; in lastCallbackRequestingState()
H A DTransactionExecutor.java129 final int postExecutionState = item.getPostExecutionState(); in executeCallbacks() local
146 if (postExecutionState != UNDEFINED && r != null) { in executeCallbacks()
149 i == lastCallbackRequestingState && finalState == postExecutionState; in executeCallbacks()
150 cycleToPath(r, postExecutionState, shouldExcludeLastTransition, transaction); in executeCallbacks()