Home
last modified time | relevance | path

Searched refs:suppressedExceptions (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DThrowable.java239 private List<Throwable> suppressedExceptions = Collections.emptyList(); field in Throwable
379 suppressedExceptions = null; in Throwable()
952 if (suppressedExceptions != null) { in readObject()
954 if (suppressedExceptions.isEmpty()) { in readObject()
961 for (Throwable t : suppressedExceptions) { in readObject()
971 suppressedExceptions = suppressed; in readObject()
1090 if (suppressedExceptions == null) // Suppressed exceptions not recorded in addSuppressed()
1095 if (suppressedExceptions.isEmpty()) in addSuppressed()
1096 suppressedExceptions = new ArrayList<>(1); in addSuppressed()
1098 suppressedExceptions.add(exception); in addSuppressed()
[all …]
/libcore/dalvik/src/main/java/dalvik/system/
DDexPathList.java162 ArrayList<IOException> suppressedExceptions = new ArrayList<IOException>(); in DexPathList() local
165 suppressedExceptions, definingContext, isTrusted); in DexPathList()
182 if (suppressedExceptions.size() > 0) { in DexPathList()
184 suppressedExceptions.toArray(new IOException[suppressedExceptions.size()]); in DexPathList()
265 final List<IOException> suppressedExceptions = new ArrayList<IOException>(); in initByteBufferDexPath() local
289 suppressedExceptions.add(suppressed); in initByteBufferDexPath()
293 if (suppressedExceptions.size() > 0) { in initByteBufferDexPath()
294 dexElementsSuppressedExceptions = suppressedExceptions.toArray( in initByteBufferDexPath()
295 new IOException[suppressedExceptions.size()]); in initByteBufferDexPath()
344 List<IOException> suppressedExceptions) { in makeInMemoryDexElements() argument
[all …]
DBaseDexClassLoader.java193 List<Throwable> suppressedExceptions = new ArrayList<Throwable>(); in findClass() local
194 Class c = pathList.findClass(name, suppressedExceptions); in findClass()
198 for (Throwable t : suppressedExceptions) { in findClass()
/libcore/ojluni/annotations/hiddenapi/java/lang/
DThrowable.java170 private java.util.List<java.lang.Throwable> suppressedExceptions; field in Throwable