Home
last modified time | relevance | path

Searched refs:exceptionMessage (Results 1 – 25 of 26) sorted by relevance

12

/aosp14/frameworks/base/core/tests/coretests/src/android/app/
H A DApplicationErrorReportTest.java53 crashInfo.exceptionMessage.length() < 50000); in testHugeExceptionMessageLeadsToReasonableReport()
66 String exceptionMessage = crashInfo.exceptionMessage; in testTruncationKeepsStartAndEndIntact() local
67 assertEquals("start", exceptionMessage.substring(0, "start".length())); in testTruncationKeepsStartAndEndIntact()
68 assertEquals("end", exceptionMessage.substring(exceptionMessage.length() - "end".length())); in testTruncationKeepsStartAndEndIntact()
/aosp14/system/core/fs_mgr/libfiemap/
H A Dbinder.cpp109 << " binder returned: " << status.exceptionMessage().string(); in DeleteBackingImage()
125 << " binder returned: " << status.exceptionMessage().string(); in MapImageDevice()
136 << " binder returned: " << status.exceptionMessage().string(); in UnmapImageDevice()
147 << " binder returned: " << status.exceptionMessage().string(); in BackingImageExists()
158 << " binder returned: " << status.exceptionMessage().string(); in IsImageMapped()
178 << " binder returned: " << status.exceptionMessage().string(); in GetAllBackingImages()
192 << " binder returned: " << status.exceptionMessage().string(); in RemoveAllImages()
202 << " binder returned: " << status.exceptionMessage().string(); in DisableImage()
212 << " binder returned: " << status.exceptionMessage().string(); in RemoveDisabledImages()
222 << " binder returned: " << status.exceptionMessage().string(); in GetMappedImageDevice()
[all …]
/aosp14/frameworks/base/keystore/tests/src/android/security/keystore/
H A DKeyStoreExceptionTest.java36 String exceptionMessage = exception.getMessage(); in testKeystoreMessageIsIncluded() local
37 assertTrue(exceptionMessage.contains(primaryMessage)); in testKeystoreMessageIsIncluded()
38 assertTrue(exceptionMessage.contains(keystoreMessage)); in testKeystoreMessageIsIncluded()
/aosp14/frameworks/base/native/android/
H A Dperformance_hint.cpp128 ret.exceptionMessage().c_str()); in create()
175 ALOGE("%s: HintSession close failed: %s", __FUNCTION__, ret.exceptionMessage().c_str()); in ~APerformanceHintSession()
187 ret.exceptionMessage().c_str()); in updateTargetWorkDuration()
235 ret.exceptionMessage().c_str()); in reportActualWorkDuration()
261 ALOGE("%s: HintSession sendHint failed: %s", __FUNCTION__, ret.exceptionMessage().c_str()); in sendHint()
276 ALOGE("%s: failed: %s", __FUNCTION__, ret.exceptionMessage().c_str()); in setThreads()
290 ALOGE("%s: failed: %s", __FUNCTION__, ret.exceptionMessage().c_str()); in getThreadIds()
/aosp14/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.java315 public String exceptionMessage; field in ApplicationErrorReport.CrashInfo
363 exceptionMessage = tr.getMessage(); in CrashInfo()
374 exceptionMessage = msg; in CrashInfo()
400 exceptionMessage = sanitizeString(exceptionMessage); in CrashInfo()
435 exceptionMessage = in.readString(); in CrashInfo()
451 dest.writeString(exceptionMessage); in writeToParcel()
462 Slog.d("Error", "ERR: exMsg=" + exceptionMessage); in writeToParcel()
477 pw.println(prefix + "exceptionMessage: " + exceptionMessage); in dump()
/aosp14/frameworks/base/libs/hwui/jni/
H A DBufferUtils.cpp82 const char* exceptionMessage = nullptr; in setIndirectData() local
94 exceptionMessage = "remaining() < size < needed"; in setIndirectData()
110 jniThrowException(env, exceptionType, exceptionMessage); in setIndirectData()
/aosp14/frameworks/base/core/tests/BroadcastRadioTests/src/com/android/server/broadcastradio/hal2/
H A DTunerSessionHidlTest.java592 String exceptionMessage = "HAL service died."; in cancel_whenHalThrowsRemoteException_fails() local
600 .that(thrown).hasMessageThat().contains(exceptionMessage); in cancel_whenHalThrowsRemoteException_fails()
629 String exceptionMessage = "HAL service died."; in getImage_whenHalThrowsException_fails() local
631 .thenThrow(new RemoteException(exceptionMessage)); in getImage_whenHalThrowsException_fails()
638 .that(thrown).hasMessageThat().contains(exceptionMessage); in getImage_whenHalThrowsException_fails()
847 String exceptionMessage = "HAL service died."; in setParameters_whenHalThrowsRemoteException_fails() local
849 .thenThrow(new RemoteException(exceptionMessage)); in setParameters_whenHalThrowsRemoteException_fails()
856 .that(thrown).hasMessageThat().contains(exceptionMessage); in setParameters_whenHalThrowsRemoteException_fails()
873 String exceptionMessage = "HAL service died."; in getParameters_whenServiceThrowsRemoteException_fails() local
875 .thenThrow(new RemoteException(exceptionMessage)); in getParameters_whenServiceThrowsRemoteException_fails()
[all …]
/aosp14/frameworks/base/core/tests/BroadcastRadioTests/src/com/android/server/broadcastradio/aidl/
H A DTunerSessionTest.java632 String exceptionMessage = "HAL service died."; in cancel_whenHalThrowsRemoteException_fails() local
640 .that(thrown).hasMessageThat().contains(exceptionMessage); in cancel_whenHalThrowsRemoteException_fails()
669 String exceptionMessage = "HAL service died."; in getImage_whenHalThrowsException_fails() local
671 .thenThrow(new RemoteException(exceptionMessage)); in getImage_whenHalThrowsException_fails()
678 .that(thrown).hasMessageThat().contains(exceptionMessage); in getImage_whenHalThrowsException_fails()
1126 String exceptionMessage = "HAL service died."; in setParameters_whenHalThrowsRemoteException_fails() local
1128 .thenThrow(new RemoteException(exceptionMessage)); in setParameters_whenHalThrowsRemoteException_fails()
1135 .that(thrown).hasMessageThat().contains(exceptionMessage); in setParameters_whenHalThrowsRemoteException_fails()
1152 String exceptionMessage = "HAL service died."; in getParameters_whenServiceThrowsRemoteException_fails() local
1154 .thenThrow(new RemoteException(exceptionMessage)); in getParameters_whenServiceThrowsRemoteException_fails()
[all …]
/aosp14/frameworks/base/core/java/android/net/vcn/
H A DIVcnStatusCallback.aidl26 in String exceptionMessage); in onGatewayConnectionError() argument
H A DVcnManager.java678 @Nullable String exceptionMessage) { in onGatewayConnectionError() argument
679 final Throwable cause = createThrowableByClassName(exceptionClass, exceptionMessage); in onGatewayConnectionError()
/aosp14/frameworks/base/test-base/src/junit/framework/
H A DTestFailure.java52 public String exceptionMessage() { in exceptionMessage() method in TestFailure
/aosp14/frameworks/base/services/core/java/com/android/server/vcn/
H A DVcn.java681 @Nullable String exceptionMessage); in onGatewayConnectionError() argument
709 @Nullable String exceptionMessage) { in onGatewayConnectionError() argument
711 gatewayConnectionName, errorCode, exceptionClass, exceptionMessage); in onGatewayConnectionError()
H A DVcnGatewayConnection.java1288 final String exceptionMessage; in notifyStatusCallbackForSessionClosed() local
1293 exceptionMessage = exception.getMessage(); in notifyStatusCallbackForSessionClosed()
1298 exceptionMessage = exception.getCause().getMessage(); in notifyStatusCallbackForSessionClosed()
1302 exceptionMessage = in notifyStatusCallbackForSessionClosed()
1315 + exceptionMessage); in notifyStatusCallbackForSessionClosed()
1321 exceptionMessage); in notifyStatusCallbackForSessionClosed() local
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DNativeCrashListener.java84 ci.exceptionMessage = Os.strsignal(mSignal); in run()
H A DAppErrors.java590 String longMsg = crashInfo.exceptionMessage; in crashApplicationInner()
H A DActivityManagerService.java8939 crashInfo.exceptionMessage, in handleApplicationCrashInner()
9214 crashInfo == null ? "unknown" : crashInfo.exceptionMessage); in handleApplicationWtfInner()
/aosp14/frameworks/base/services/permission/java/com/android/server/permission/access/permission/
H A DPermissionService.kt2027 val exceptionMessage = buildString { regex
2039 throw SecurityException(exceptionMessage)
2047 val exceptionMessage = buildString { regex
2055 throw SecurityException(exceptionMessage)
2075 val exceptionMessage = buildString { regex
2085 throw SecurityException(exceptionMessage)
/aosp14/frameworks/base/core/tests/BroadcastRadioTests/src/android/hardware/radio/
H A DRadioManagerTest.java1091 String exceptionMessage = "service is dead"; in addAnnouncementListener_whenServiceDied_throwException() local
1093 .thenThrow(new RemoteException(exceptionMessage)); in addAnnouncementListener_whenServiceDied_throwException()
1100 .that(thrown).hasMessageThat().contains(exceptionMessage); in addAnnouncementListener_whenServiceDied_throwException()
/aosp14/frameworks/base/services/core/java/com/android/server/
H A DVcnManagementService.java1359 @Nullable String exceptionMessage); in onGatewayConnectionError() argument
1491 @Nullable String exceptionMessage) { in onGatewayConnectionError() argument
1507 exceptionMessage); in onGatewayConnectionError()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DInstaller.java260 result.exceptionMessage = null; in buildPlaceholderCreateAppDataResult()
409 new InstallerException(result.exceptionMessage)); in execute()
/aosp14/system/core/storaged/
H A Dstoraged_uid_monitor.cpp138 LOG(ERROR) << "package_native::getNamesForUids failed: " << status.exceptionMessage(); in get_uid_names()
/aosp14/frameworks/base/core/java/android/provider/
H A DSettings.java20111 StringBuilder exceptionMessage = new StringBuilder(); in isCallingPackageAllowedToPerformAppOpsProtectedOperation() local
20112 exceptionMessage.append(callingPackage); in isCallingPackageAllowedToPerformAppOpsProtectedOperation()
20113 exceptionMessage.append(" was not granted "); in isCallingPackageAllowedToPerformAppOpsProtectedOperation()
20115 exceptionMessage.append(" either of these permissions: "); in isCallingPackageAllowedToPerformAppOpsProtectedOperation()
20117 exceptionMessage.append(" this permission: "); in isCallingPackageAllowedToPerformAppOpsProtectedOperation()
20120 exceptionMessage.append(permissions[i]); in isCallingPackageAllowedToPerformAppOpsProtectedOperation()
20121 exceptionMessage.append((i == permissions.length - 1) ? "." : ", "); in isCallingPackageAllowedToPerformAppOpsProtectedOperation()
20124 throw new SecurityException(exceptionMessage.toString()); in isCallingPackageAllowedToPerformAppOpsProtectedOperation()
/aosp14/frameworks/base/test-base/api/
H A Dcurrent.txt172 method public String exceptionMessage();
/aosp14/frameworks/base/services/java/com/android/server/
H A DSystemServer.java3354 processName, -1, tag, crashInfo.exceptionMessage); in handleEarlySystemWtf()
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...

12