Home
last modified time | relevance | path

Searched refs:getCause (Results 1 – 25 of 31) sorted by relevance

12

/frameworks/base/core/java/android/net/http/
DX509TrustManagerExtensions.java108 if (e.getCause() instanceof CertificateException) { in checkServerTrusted()
109 throw (CertificateException) e.getCause(); in checkServerTrusted()
111 if (e.getCause() instanceof RuntimeException) { in checkServerTrusted()
112 throw (RuntimeException) e.getCause(); in checkServerTrusted()
114 throw new CertificateException("checkServerTrusted failed", e.getCause()); in checkServerTrusted()
149 if (e.getCause() instanceof RuntimeException) { in isSameTrustConfiguration()
150 throw (RuntimeException) e.getCause(); in isSameTrustConfiguration()
152 throw new RuntimeException("isSameTrustConfiguration failed", e.getCause()); in isSameTrustConfiguration()
/frameworks/opt/net/voip/src/java/android/net/sip/
DSipException.java33 && (cause.getCause() != null)) in SipException()
34 ? cause.getCause() in SipException()
/frameworks/base/services/core/java/com/android/server/pm/
DPackageManagerException.java45 throw new PackageManagerException(e.error, e.getMessage(), e.getCause()); in from()
51 e.getMessage(), e.getCause()); in from()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
DDrawerLayoutUtil.java30 import static com.android.layoutlib.bridge.util.ReflectionUtils.getCause;
60 getCause(e), null); in openDrawer()
DRecyclerViewUtil.java31 import static com.android.layoutlib.bridge.util.ReflectionUtils.getCause;
66 Throwable cause = getCause(e); in setAdapter()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
DReflectionUtils.java71 public static Throwable getCause(@NonNull Throwable throwable) { in getCause() method in ReflectionUtils
72 Throwable cause = throwable.getCause(); in getCause()
/frameworks/base/core/java/android/util/
DReflectiveProperty.java122 throw new RuntimeException(e.getCause()); in set()
143 throw new RuntimeException(e.getCause()); in get()
DExceptionUtils.java49 while ((t = t.getCause()) != null) { in getCompleteMessage()
DLog.java341 t = t.getCause(); in getStackTraceString()
415 t = t.getCause(); in printlns()
/frameworks/base/core/java/android/ddm/
DDdmHandleViewDebug.java389 Log.e(TAG, "Exception while invoking method: " + e.getCause().getMessage()); in invokeViewMethod()
390 String msg = e.getCause().getMessage(); in invokeViewMethod()
392 msg = e.getCause().toString(); in invokeViewMethod()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DMockAnswerUtil.java53 throw e.getCause(); in answer()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
DBridge.java446 while (t2.getCause() != null) { in createSession()
447 t2 = t.getCause(); in createSession()
474 while (t2.getCause() != null) { in renderDrawable()
475 t2 = t.getCause(); in renderDrawable()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
DRenderSessionImpl.java348 while (t.getCause() != null) { in inflate()
349 t = t.getCause(); in inflate()
510 while (t.getCause() != null) { in render()
511 t = t.getCause(); in render()
594 while (t.getCause() != null) { in animate()
595 t = t.getCause(); in animate()
/frameworks/multidex/library/test/src/android/util/
DLog.java192 t = t.getCause(); in getStackTraceString()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
DEventBus.java649 Log.e(TAG, "Failed to create InterprocessEvent", e.getCause()); in onReceive()
889 Log.e(TAG, "Failed to invoke method", e.getCause()); in processEvent()
891 throw new RuntimeException(e.getCause()); in processEvent()
/frameworks/base/core/java/android/app/
DApplicationErrorReport.java353 while (tr.getCause() != null) { in CrashInfo()
354 tr = tr.getCause(); in CrashInfo()
/frameworks/support/v4/java/android/support/v4/content/
DModernAsyncTask.java143 "An error occurred while executing doInBackground()", e.getCause()); in ModernAsyncTask()
/frameworks/base/core/java/android/os/
DAsyncTask.java319 e.getCause()); in AsyncTask()
/frameworks/base/tools/layoutlib/bridge/src/android/view/
DBridgeInflater.java161 if (!(e.getCause() instanceof ClassNotFoundException)) { in createViewFromTag()
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DDelegateClassAdapterTest.java115 assertEquals(UnsatisfiedLinkError.class, e.getCause().getClass()); in testNoOp()
/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
DXmlConfigTests.java367 e.getCause()); in testBadConfig()
/frameworks/base/core/java/com/android/internal/os/
DZygoteInit.java869 Throwable cause = ex.getCause(); in run()
/frameworks/base/core/java/android/view/
DViewDebug.java1148 Throwable t = e.getCause(); in callMethodOnAppropriateTheadBlocking()
1629 exception.set(e.getCause()); in invokeViewMethod()
/frameworks/base/core/java/android/accounts/
DAccountManager.java1968 final Throwable cause = e.getCause();
2150 final Throwable cause = e.getCause();
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipSessionGroup.java414 Throwable cause = exception.getCause(); in getRootCause()
417 cause = exception.getCause(); in getRootCause()

12