Home
last modified time | relevance | path

Searched refs:throwable (Results 1 – 25 of 28) sorted by relevance

12

/frameworks/base/core/java/android/view/
DInflateException.java28 public InflateException(String detailMessage, Throwable throwable) { in InflateException() argument
29 super(detailMessage, throwable); in InflateException()
36 public InflateException(Throwable throwable) { in InflateException() argument
37 super(throwable); in InflateException()
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
DUiObjectNotFoundException.java41 public UiObjectNotFoundException(String detailMessage, Throwable throwable) { in UiObjectNotFoundException() argument
42 super(detailMessage, throwable); in UiObjectNotFoundException()
48 public UiObjectNotFoundException(Throwable throwable) { in UiObjectNotFoundException() argument
49 super(throwable); in UiObjectNotFoundException()
/frameworks/layoutlib/remote/client/src/com/android/layoutlib/bridge/remote/client/adapters/
DRemoteLayoutLogAdapter.java45 public void fidelityWarning(String tag, String message, Throwable throwable, Object viewCookie, in fidelityWarning() argument
47 mLog.fidelityWarning(tag, message, throwable, viewCookie, data); in fidelityWarning()
56 public void error(String tag, String message, Throwable throwable, Serializable data) { in error() argument
57 mLog.error(tag, message, throwable, null); in error()
/frameworks/layoutlib/remote/server/src/com/android/layoutlib/bridge/remote/server/adapters/
DRemoteLayoutLogAdapter.java42 public void fidelityWarning(String tag, String message, Throwable throwable, Object viewCookie, in fidelityWarning() argument
45 mLog.fidelityWarning(tag, message, throwable, viewCookie, data); in fidelityWarning()
61 public void error(String tag, String message, Throwable throwable, Object data) { in error() argument
63 mLog.error(tag, message, throwable, null); in error()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/plugins/
DPluginManagerImpl.java410 public void uncaughtException(Thread thread, Throwable throwable) { in uncaughtException() argument
412 mHandler.uncaughtException(thread, throwable); in uncaughtException()
416 boolean disabledAny = checkStack(throwable); in uncaughtException()
426 throwable = new CrashWhilePluginActiveException(throwable); in uncaughtException()
430 mHandler.uncaughtException(thread, throwable); in uncaughtException()
433 private boolean checkStack(Throwable throwable) { in checkStack() argument
434 if (throwable == null) return false; in checkStack()
436 for (StackTraceElement element : throwable.getStackTrace()) { in checkStack()
441 return disabledAny | checkStack(throwable.getCause()); in checkStack()
446 public CrashWhilePluginActiveException(Throwable throwable) { in CrashWhilePluginActiveException() argument
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/
DEuiccCardException.java30 public EuiccCardException(String message, Throwable throwable) { in EuiccCardException() argument
31 super(message, throwable); in EuiccCardException()
/frameworks/base/core/tests/coretests/src/android/animation/
DFutureWaiter.java45 public boolean setException(Throwable throwable) { in setException() argument
46 return super.setException(throwable); in setException()
/frameworks/base/telephony/java/com/android/internal/telephony/uicc/asn1/
DInvalidAsn1DataException.java31 public InvalidAsn1DataException(int tag, String message, Throwable throwable) { in InvalidAsn1DataException() argument
32 super(message, throwable); in InvalidAsn1DataException()
/frameworks/base/services/core/java/com/android/server/
DNativeDaemonConnectorException.java33 public NativeDaemonConnectorException(String detailMessage, Throwable throwable) { in NativeDaemonConnectorException() argument
34 super(detailMessage, throwable); in NativeDaemonConnectorException()
/frameworks/layoutlib/remote/common/src/com/android/layout/remote/api/
DRemoteLayoutLog.java50 void fidelityWarning(String tag, String message, Throwable throwable, Object viewCookie, in fidelityWarning() argument
70 void error(String tag, String message, Throwable throwable, Serializable data) in error() argument
/frameworks/base/services/core/java/com/android/server/pm/
DParallelPackageParser.java70 Throwable throwable; // Set if an error occurs during parsing field in ParallelPackageParser.ParseResult
77 ", throwable=" + throwable + in toString()
119 pr.throwable = e; in submit()
DPackageManagerException.java38 public PackageManagerException(int error, String detailMessage, Throwable throwable) { in PackageManagerException() argument
39 super(detailMessage, throwable); in PackageManagerException()
/frameworks/base/test-base/src/android/test/
DInstrumentationTestCase.java145 } catch (Throwable throwable) { in runTestOnUiThread()
146 exceptions[0] = throwable; in runTestOnUiThread()
196 } catch (Throwable throwable) { in runTest()
197 exceptions[0] = throwable; in runTest()
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
DReflectionUtils.java107 public static Throwable getCause(@NonNull Throwable throwable) { in getCause() argument
108 Throwable cause = throwable.getCause(); in getCause()
109 return cause == null ? throwable : cause; in getCause()
/frameworks/layoutlib/bridge/src/android/animation/
DAnimationThread.java165 } catch (Throwable throwable) { in run()
168 mListener.done(Status.ERROR_UNKNOWN.createResult("Error playing animation", throwable)); in run()
/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
DRenderTestBase.java423 Throwable throwable, Object cookie, Object data) { in getLayoutLog()
426 if (throwable != null) { in getLayoutLog()
427 throwable.printStackTrace(); in getLayoutLog()
439 public void error(String tag, String message, Throwable throwable, Object data) { in getLayoutLog()
441 if (throwable != null) { in getLayoutLog()
442 throwable.printStackTrace(); in getLayoutLog()
/frameworks/base/core/tests/utillib/src/android/test/
DBandwidthTestCase.java81 } catch (Throwable throwable) { in runTest()
82 exceptions[0] = throwable; in runTest()
/frameworks/base/core/java/android/os/
DFileObserver.java164 } catch (Throwable throwable) { in onEvent()
165 Log.wtf(LOG_TAG, "Unhandled exception in FileObserver " + observer, throwable); in onEvent()
DBinder.java358 } catch (Throwable throwable) { in withCleanCallingIdentity()
359 throwableToPropagate = throwable; in withCleanCallingIdentity()
382 } catch (Throwable throwable) { in withCleanCallingIdentity()
383 throwableToPropagate = throwable; in withCleanCallingIdentity()
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/brightline/
DBrightLineFalsingManager.java329 static void logDebug(String msg, Throwable throwable) { in logDebug() argument
331 Log.d(TAG, msg, throwable); in logDebug()
/frameworks/base/tests/testables/src/android/testing/
DTestableLooper.java274 } catch (Throwable throwable) { in invokeExplosively()
275 throw new LooperException(throwable); in invokeExplosively()
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipAudioCall.java1124 private void throwSipException(Throwable throwable) throws SipException {
1125 if (throwable instanceof SipException) {
1126 throw (SipException) throwable;
1128 throw new SipException("", throwable);
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/
DBridge.java134 public void error(String tag, String message, Throwable throwable, Object data) {
265 } catch (Exception throwable) { in init()
269 throwable, null); in init()
/frameworks/base/services/tests/servicestests/src/com/android/server/devicepolicy/
DDpmMockContext.java120 } catch (Throwable throwable) { in withCleanCallingIdentity()
121 throwableToPropagate = throwable; in withCleanCallingIdentity()
/frameworks/base/core/java/android/webkit/
DWebView.java2562 Throwable throwable = new Throwable( in checkThread() local
2568 Log.w(LOGTAG, Log.getStackTraceString(throwable)); in checkThread()
2569 StrictMode.onWebViewMethodCalledOnWrongThread(throwable); in checkThread()
2572 throw new RuntimeException(throwable); in checkThread()

12