Home
last modified time | relevance | path

Searched refs:caughtException (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tools/locked_region_code_injection/test/lockedregioncodeinjection/
DTestMain.java130 boolean caughtException = false; in testCaughtException()
146 caughtException = true; in testCaughtException()
152 Assert.assertTrue(caughtException); in testCaughtException()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/dream/
DDreamBackend.java321 Exception caughtException = null; in getSettingsComponentName() local
343 caughtException = e; in getSettingsComponentName()
347 if (caughtException != null) { in getSettingsComponentName()
348 Log.w(TAG, "Error parsing : " + resolveInfo.serviceInfo.packageName, caughtException); in getSettingsComponentName()
/frameworks/base/services/core/java/com/android/server/trust/
DTrustManagerService.java795 Exception caughtException = null; in getSettingsAttrs() local
822 caughtException = e; in getSettingsAttrs()
824 caughtException = e; in getSettingsAttrs()
826 caughtException = e; in getSettingsAttrs()
830 if (caughtException != null) { in getSettingsAttrs()
831 Slog.w(TAG, "Error parsing : " + resolveInfo.serviceInfo.packageName, caughtException); in getSettingsAttrs()
/frameworks/base/services/core/java/com/android/server/am/
DActiveServices.java4074 Exception caughtException = null; in sendServiceArgsLocked() local
4081 caughtException = e; in sendServiceArgsLocked()
4086 caughtException = e; in sendServiceArgsLocked()
4089 caughtException = e; in sendServiceArgsLocked()
4092 if (caughtException != null) { in sendServiceArgsLocked()
4100 if (caughtException instanceof TransactionTooLargeException) { in sendServiceArgsLocked()
4101 throw (TransactionTooLargeException)caughtException; in sendServiceArgsLocked()