Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/window/
H A DTaskFragmentOrganizer.java116 final Bundle errorBundle = new Bundle(); in putErrorInfoInBundle() local
117 errorBundle.putSerializable(KEY_ERROR_CALLBACK_THROWABLE, exception); in putErrorInfoInBundle()
119 errorBundle.putParcelable(KEY_ERROR_CALLBACK_TASK_FRAGMENT_INFO, info); in putErrorInfoInBundle()
121 errorBundle.putInt(KEY_ERROR_CALLBACK_OP_TYPE, opType); in putErrorInfoInBundle()
122 return errorBundle; in putErrorInfoInBundle()
H A DTaskFragmentTransaction.java268 public Change setErrorBundle(@NonNull Bundle errorBundle) { in setErrorBundle() argument
269 mErrorBundle = requireNonNull(errorBundle); in setErrorBundle()
/aosp14/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/
H A DSplitController.java501 final Bundle errorBundle = change.getErrorBundle(); in onTransactionReady() local
503 final TaskFragmentInfo errorTaskFragmentInfo = errorBundle.getParcelable( in onTransactionReady()
505 final int opType = errorBundle.getInt(KEY_ERROR_CALLBACK_OP_TYPE); in onTransactionReady()
506 final Throwable exception = errorBundle.getSerializable( in onTransactionReady()
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskFragmentOrganizerController.java323 final Bundle errorBundle = putErrorInfoInBundle(exception, info, opType); in prepareTaskFragmentError() local
326 .setErrorBundle(errorBundle); in prepareTaskFragmentError()
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DTaskFragmentOrganizerControllerTest.java1733 final Bundle errorBundle = change.getErrorBundle(); in assertTaskFragmentErrorTransaction() local
1734 assertEquals(opType, errorBundle.getInt(KEY_ERROR_CALLBACK_OP_TYPE)); in assertTaskFragmentErrorTransaction()
1735 assertEquals(exceptionClass, errorBundle.getSerializable( in assertTaskFragmentErrorTransaction()
/aosp14/frameworks/base/libs/WindowManager/Jetpack/tests/unittest/src/androidx/window/extensions/embedding/
H A DSplitControllerTest.java1204 final Bundle errorBundle = TaskFragmentOrganizer.putErrorInfoInBundle(exception, info, in testOnTransactionReady_taskFragmentParentError() local
1208 .setErrorBundle(errorBundle)); in testOnTransactionReady_taskFragmentParentError()