Home
last modified time | relevance | path

Searched refs:errorBundle (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/window/
DTaskFragmentOrganizer.java135 final Bundle errorBundle = new Bundle(); in putErrorInfoInBundle() local
136 errorBundle.putSerializable(KEY_ERROR_CALLBACK_THROWABLE, exception); in putErrorInfoInBundle()
138 errorBundle.putParcelable(KEY_ERROR_CALLBACK_TASK_FRAGMENT_INFO, info); in putErrorInfoInBundle()
140 errorBundle.putInt(KEY_ERROR_CALLBACK_OP_TYPE, opType); in putErrorInfoInBundle()
141 return errorBundle; in putErrorInfoInBundle()
DTaskFragmentTransaction.java272 public Change setErrorBundle(@NonNull Bundle errorBundle) { in setErrorBundle() argument
273 mErrorBundle = requireNonNull(errorBundle); in setErrorBundle()
/frameworks/base/services/core/java/com/android/server/wm/
DTaskFragmentOrganizerController.java360 final Bundle errorBundle = putErrorInfoInBundle(exception, info, opType); in prepareTaskFragmentError() local
363 .setErrorBundle(errorBundle); in prepareTaskFragmentError()
/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/
DSplitController.java683 final Bundle errorBundle = change.getErrorBundle(); in onTransactionReady() local
685 final TaskFragmentInfo errorTaskFragmentInfo = errorBundle.getParcelable( in onTransactionReady()
687 final int opType = errorBundle.getInt(KEY_ERROR_CALLBACK_OP_TYPE); in onTransactionReady()
688 final Throwable exception = errorBundle.getSerializable( in onTransactionReady()
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DTaskFragmentOrganizerControllerTest.java2108 final Bundle errorBundle = change.getErrorBundle(); in assertTaskFragmentErrorTransaction() local
2109 assertEquals(opType, errorBundle.getInt(KEY_ERROR_CALLBACK_OP_TYPE)); in assertTaskFragmentErrorTransaction()
2110 assertEquals(exceptionClass, errorBundle.getSerializable( in assertTaskFragmentErrorTransaction()
/frameworks/base/libs/WindowManager/Jetpack/tests/unittest/src/androidx/window/extensions/embedding/
DSplitControllerTest.java1185 final Bundle errorBundle = TaskFragmentOrganizer.putErrorInfoInBundle(exception, info, in testOnTransactionReady_taskFragmentParentError() local
1189 .setErrorBundle(errorBundle)); in testOnTransactionReady_taskFragmentParentError()