/frameworks/base/core/java/android/net/http/ |
D | X509TrustManagerExtensions.java | 108 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/ |
D | SipException.java | 33 && (cause.getCause() != null)) in SipException() 34 ? cause.getCause() in SipException()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerException.java | 45 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/ |
D | DrawerLayoutUtil.java | 30 import static com.android.layoutlib.bridge.util.ReflectionUtils.getCause; 60 getCause(e), null); in openDrawer()
|
D | RecyclerViewUtil.java | 31 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/ |
D | ReflectionUtils.java | 71 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/ |
D | ReflectiveProperty.java | 122 throw new RuntimeException(e.getCause()); in set() 143 throw new RuntimeException(e.getCause()); in get()
|
D | ExceptionUtils.java | 49 while ((t = t.getCause()) != null) { in getCompleteMessage()
|
D | Log.java | 341 t = t.getCause(); in getStackTraceString() 415 t = t.getCause(); in printlns()
|
/frameworks/base/core/java/android/ddm/ |
D | DdmHandleViewDebug.java | 389 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/ |
D | MockAnswerUtil.java | 53 throw e.getCause(); in answer()
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
D | Bridge.java | 446 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/ |
D | RenderSessionImpl.java | 348 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/ |
D | Log.java | 192 t = t.getCause(); in getStackTraceString()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/ |
D | EventBus.java | 649 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/ |
D | ApplicationErrorReport.java | 353 while (tr.getCause() != null) { in CrashInfo() 354 tr = tr.getCause(); in CrashInfo()
|
/frameworks/support/v4/java/android/support/v4/content/ |
D | ModernAsyncTask.java | 143 "An error occurred while executing doInBackground()", e.getCause()); in ModernAsyncTask()
|
/frameworks/base/core/java/android/os/ |
D | AsyncTask.java | 319 e.getCause()); in AsyncTask()
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
D | BridgeInflater.java | 161 if (!(e.getCause() instanceof ClassNotFoundException)) { in createViewFromTag()
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
D | DelegateClassAdapterTest.java | 115 assertEquals(UnsatisfiedLinkError.class, e.getCause().getClass()); in testNoOp()
|
/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/ |
D | XmlConfigTests.java | 367 e.getCause()); in testBadConfig()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | ZygoteInit.java | 869 Throwable cause = ex.getCause(); in run()
|
/frameworks/base/core/java/android/view/ |
D | ViewDebug.java | 1148 Throwable t = e.getCause(); in callMethodOnAppropriateTheadBlocking() 1629 exception.set(e.getCause()); in invokeViewMethod()
|
/frameworks/base/core/java/android/accounts/ |
D | AccountManager.java | 1968 final Throwable cause = e.getCause(); 2150 final Throwable cause = e.getCause();
|
/frameworks/opt/net/voip/src/java/com/android/server/sip/ |
D | SipSessionGroup.java | 414 Throwable cause = exception.getCause(); in getRootCause() 417 cause = exception.getCause(); in getRootCause()
|