Searched refs:getCause (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/opt/net/voip/src/java/android/net/sip/
H A DSipException.java33 && (cause.getCause() != null))
34 ? cause.getCause()
/frameworks/base/core/java/android/net/http/
H A DX509TrustManagerExtensions.java108 if (e.getCause() instanceof CertificateException) {
109 throw (CertificateException) e.getCause();
111 if (e.getCause() instanceof RuntimeException) {
112 throw (RuntimeException) e.getCause();
114 throw new CertificateException("checkServerTrusted failed", e.getCause());
149 if (e.getCause() instanceof RuntimeException) {
150 throw (RuntimeException) e.getCause();
152 throw new RuntimeException("isSameTrustConfiguration failed", e.getCause());
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerException.java50 throw new PackageManagerException(e.error, e.getMessage(), e.getCause());
56 e.getMessage(), e.getCause());
/frameworks/base/core/java/android/os/
H A DParcelableException.java44 if (clazz.isAssignableFrom(getCause().getClass())) {
45 throw (T) getCause();
76 writeToParcel(dest, getCause());
H A DAsyncTask.java354 e.getCause());
/frameworks/support/transition/api21/android/support/transition/
H A DViewUtilsApi21.java49 throw new RuntimeException(e.getCause());
63 throw new RuntimeException(e.getCause());
77 throw new RuntimeException(e.getCause());
H A DImageViewUtilsApi21.java50 throw new RuntimeException(e.getCause());
H A DGhostViewApi21.java53 throw new RuntimeException(e.getCause());
68 throw new RuntimeException(e.getCause());
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/support/
H A DDrawerLayoutUtil.java30 import static com.android.layoutlib.bridge.util.ReflectionUtils.getCause;
60 getCause(e), null);
H A DFragmentTabHostUtil.java26 import static com.android.layoutlib.bridge.util.ReflectionUtils.getCause;
47 Throwable cause = getCause(e);
H A DRecyclerViewUtil.java32 import static com.android.layoutlib.bridge.util.ReflectionUtils.getCause;
71 Throwable cause = getCause(e);
/frameworks/support/transition/api19/android/support/transition/
H A DViewUtilsApi19.java46 throw new RuntimeException(e.getCause());
62 throw new RuntimeException(e.getCause());
/frameworks/base/tests/utils/testutils/java/android/app/test/
H A DMockAnswerUtil.java53 throw e.getCause();
/frameworks/support/transition/api22/android/support/transition/
H A DViewUtilsApi22.java44 throw new RuntimeException(e.getCause());
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DReflectionUtils.java78 public static Throwable getCause(@NonNull Throwable throwable) { method in class:ReflectionUtils
79 Throwable cause = throwable.getCause();
/frameworks/base/core/java/android/util/
H A DReflectiveProperty.java122 throw new RuntimeException(e.getCause());
143 throw new RuntimeException(e.getCause());
H A DExceptionUtils.java49 while ((t = t.getCause()) != null) {
H A DLog.java345 t = t.getCause();
419 t = t.getCause();
/frameworks/base/tests/testables/src/android/testing/
H A DTestableLooper.java281 if (re.getCause() instanceof LooperException) {
282 throw ((LooperException) re.getCause()).getSource();
284 throw re.getCause();
H A DTestableInstrumentation.java121 topStack = t.getCause().getStackTrace()[0];
/frameworks/base/core/java/android/ddm/
H A DDdmHandleViewDebug.java389 Log.e(TAG, "Exception while invoking method: " + e.getCause().getMessage());
390 String msg = e.getCause().getMessage();
392 msg = e.getCause().toString();
/frameworks/multidex/library/test/src/android/util/
H A DLog.java192 t = t.getCause();
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java399 while (t2.getCause() != null) {
400 t2 = t.getCause();
427 while (t2.getCause() != null) {
428 t2 = t.getCause();
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
H A DEventBus.java649 Log.e(TAG, "Failed to create InterprocessEvent", e.getCause());
894 Log.e(TAG, "Failed to invoke method", e.getCause());
896 throw new RuntimeException(e.getCause());
/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.java354 while (tr.getCause() != null) {
355 tr = tr.getCause();

Completed in 566 milliseconds

12