/frameworks/base/core/java/android/net/http/ |
D | X509TrustManagerExtensions.java | 107 if (e.getCause() instanceof CertificateException) { in checkServerTrusted() 108 throw (CertificateException) e.getCause(); in checkServerTrusted() 110 if (e.getCause() instanceof RuntimeException) { in checkServerTrusted() 111 throw (RuntimeException) e.getCause(); in checkServerTrusted() 113 throw new CertificateException("checkServerTrusted failed", e.getCause()); in checkServerTrusted() 146 if (e.getCause() instanceof RuntimeException) { in isSameTrustConfiguration() 147 throw (RuntimeException) e.getCause(); in isSameTrustConfiguration() 149 throw new RuntimeException("isSameTrustConfiguration failed", e.getCause()); in isSameTrustConfiguration()
|
/frameworks/base/core/java/android/os/ |
D | ParcelableException.java | 44 if (clazz.isAssignableFrom(getCause().getClass())) { in maybeRethrow() 45 throw (T) getCause(); in maybeRethrow() 76 writeToParcel(dest, getCause()); in writeToParcel()
|
/frameworks/opt/net/voip/src/java/android/net/sip/ |
D | SipException.java | 33 && (cause.getCause() != null)) in SipException() 34 ? cause.getCause() in SipException()
|
/frameworks/support/transition/src/main/java/androidx/transition/ |
D | ViewUtilsApi21.java | 50 throw new RuntimeException(e.getCause()); in transformMatrixToGlobal() 64 throw new RuntimeException(e.getCause()); in transformMatrixToLocal() 78 throw new RuntimeException(e.getCause()); in setAnimationMatrix()
|
D | ViewUtilsApi19.java | 47 throw new RuntimeException(e.getCause()); in setTransitionAlpha() 63 throw new RuntimeException(e.getCause()); in getTransitionAlpha()
|
D | GhostViewApi21.java | 51 throw new RuntimeException(e.getCause()); in addGhost() 65 throw new RuntimeException(e.getCause()); in removeGhost()
|
D | ViewUtilsApi22.java | 45 throw new RuntimeException(e.getCause()); in setLeftTopRightBottom()
|
D | ImageViewUtils.java | 66 throw new RuntimeException(e.getCause()); in animateTransform()
|
/frameworks/base/core/java/android/util/ |
D | ExceptionUtils.java | 49 while ((t = t.getCause()) != null) { in getCompleteMessage() 86 while (t.getCause() != null) t = t.getCause(); in getRootCause()
|
D | ReflectiveProperty.java | 122 throw new RuntimeException(e.getCause()); in set() 143 throw new RuntimeException(e.getCause()); in get()
|
D | Log.java | 345 t = t.getCause(); in getStackTraceString() 419 t = t.getCause(); in printlns()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | PackageManagerException.java | 50 throw new PackageManagerException(e.error, e.getMessage(), e.getCause()); in from() 56 e.getMessage(), e.getCause()); in from()
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/ |
D | FragmentTabHostUtil.java | 26 import static com.android.layoutlib.bridge.util.ReflectionUtils.getCause; 72 Throwable cause = getCause(e); in setup()
|
D | DrawerLayoutUtil.java | 30 import static com.android.layoutlib.bridge.util.ReflectionUtils.getCause; 63 getCause(e), null); in openDrawer()
|
D | RecyclerViewUtil.java | 33 import static com.android.layoutlib.bridge.util.ReflectionUtils.getCause; 74 Throwable cause = getCause(e); in setAdapter()
|
/frameworks/base/tests/testables/src/android/testing/ |
D | TestableLooper.java | 281 if (re.getCause() instanceof LooperException) { in invokeExplosively() 282 throw ((LooperException) re.getCause()).getSource(); in invokeExplosively() 284 throw re.getCause(); in invokeExplosively()
|
D | TestableInstrumentation.java | 121 topStack = t.getCause().getStackTrace()[0]; in checkStack()
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/ |
D | ReflectionUtils.java | 98 public static Throwable getCause(@NonNull Throwable throwable) { in getCause() method in ReflectionUtils 99 Throwable cause = throwable.getCause(); in getCause()
|
/frameworks/base/apct-tests/perftests/core/src/android/os/ |
D | ParcelPerfTest.java | 230 assertTrue(e.getCause() instanceof RemoteException); in timeReadException() 232 assertNull(e.getCause()); in timeReadException()
|
/frameworks/base/tests/utils/testutils/java/android/app/test/ |
D | MockAnswerUtil.java | 53 throw e.getCause(); in answer()
|
/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/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
D | Bridge.java | 401 while (t2.getCause() != null) { in createSession() 402 t2 = t2.getCause(); in createSession() 429 while (t2.getCause() != null) { in renderDrawable() 430 t2 = t.getCause(); in renderDrawable()
|
/frameworks/multidex/library/test/src/android/util/ |
D | Log.java | 192 t = t.getCause(); in getStackTraceString()
|
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/ |
D | WrappedKey.java | 81 Throwable cause = e.getCause(); in fromSecretKey()
|
/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() 894 Log.e(TAG, "Failed to invoke method", e.getCause()); in processEvent() 896 throw new RuntimeException(e.getCause()); in processEvent()
|