Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/servertransaction/
DRefreshCallbackItem.java85 @LifecycleState int postExecutionState) { in obtain() argument
86 if (postExecutionState != ON_STOP && postExecutionState != ON_PAUSE) { in obtain()
89 + "RefreshCallbackItem but got " + postExecutionState); in obtain()
97 instance.mPostExecutionState = postExecutionState; in obtain()
DTransactionExecutorHelper.java142 int postExecutionState) { in getClosestPreExecutionState() argument
143 switch (postExecutionState) { in getClosestPreExecutionState()
150 + postExecutionState + " is not supported."); in getClosestPreExecutionState()
271 final int postExecutionState = item.getPostExecutionState(); in lastCallbackRequestingStateIndex() local
272 if (postExecutionState != UNDEFINED && activityToken.equals(item.getActivityToken())) { in lastCallbackRequestingStateIndex()
274 if (lastRequestedState == UNDEFINED || lastRequestedState == postExecutionState) { in lastCallbackRequestingStateIndex()
278 lastRequestedState = postExecutionState; in lastCallbackRequestingStateIndex()
299 final int postExecutionState = item.getPostExecutionState(); in shouldExcludeLastLifecycleState() local
300 if (activityToken == null || postExecutionState == UNDEFINED) { in shouldExcludeLastLifecycleState()
312 if (postExecutionState != lifecycleItem.getTargetState()) { in shouldExcludeLastLifecycleState()
DTransactionExecutor.java143 final int postExecutionState = item.getPostExecutionState(); in executeCallbacks() local
144 final boolean shouldExcludeLastLifecycleState = postExecutionState != UNDEFINED in executeCallbacks()
145 && i == lastCallbackRequestingState && finalState == postExecutionState; in executeCallbacks()
164 final int postExecutionState = item.getPostExecutionState(); in executeNonLifecycleItem() local
168 postExecutionState); in executeNonLifecycleItem()
182 if (postExecutionState != UNDEFINED && r != null) { in executeNonLifecycleItem()
183 cycleToPath(r, postExecutionState, shouldExcludeLastLifecycleState, transaction); in executeNonLifecycleItem()