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.java301 Exception caughtException = null; in getSettingsComponentName() local
323 caughtException = e; in getSettingsComponentName()
327 if (caughtException != null) { in getSettingsComponentName()
328 Log.w(TAG, "Error parsing : " + resolveInfo.serviceInfo.packageName, caughtException); in getSettingsComponentName()
/frameworks/base/services/core/java/com/android/server/trust/
DTrustManagerService.java542 Exception caughtException = null; in getSettingsAttrs() local
569 caughtException = e; in getSettingsAttrs()
571 caughtException = e; in getSettingsAttrs()
573 caughtException = e; in getSettingsAttrs()
577 if (caughtException != null) { in getSettingsAttrs()
578 Slog.w(TAG, "Error parsing : " + resolveInfo.serviceInfo.packageName, caughtException); in getSettingsAttrs()
/frameworks/base/services/core/java/com/android/server/am/
DActiveServices.java2589 Exception caughtException = null; in sendServiceArgsLocked() local
2596 caughtException = e; in sendServiceArgsLocked()
2601 caughtException = e; in sendServiceArgsLocked()
2604 caughtException = e; in sendServiceArgsLocked()
2607 if (caughtException != null) { in sendServiceArgsLocked()
2613 if (caughtException instanceof TransactionTooLargeException) { in sendServiceArgsLocked()
2614 throw (TransactionTooLargeException)caughtException; in sendServiceArgsLocked()