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.java248 private List<Throwable> suppressedExceptions = Collections.emptyList(); field in Throwable
388 suppressedExceptions = null; in Throwable()
968 List<Throwable> candidateSuppressedExceptions = suppressedExceptions; in readObject()
971 suppressedExceptions = Collections.emptyList(); in readObject()
993 suppressedExceptions = suppList; in readObject()
996 suppressedExceptions = null; in readObject()
1136 if (suppressedExceptions == null) // Suppressed exceptions not recorded in addSuppressed()
1141 if (suppressedExceptions.isEmpty()) in addSuppressed()
1142 suppressedExceptions = new ArrayList<>(1); in addSuppressed()
1144 suppressedExceptions.add(exception); in addSuppressed()
[all …]
/libcore/dalvik/src/main/java/dalvik/system/
DDexPathList.java164 ArrayList<IOException> suppressedExceptions = new ArrayList<IOException>(); in DexPathList() local
167 suppressedExceptions, definingContext, isTrusted); in DexPathList()
184 if (suppressedExceptions.size() > 0) { in DexPathList()
186 suppressedExceptions.toArray(new IOException[suppressedExceptions.size()]); in DexPathList()
260 final List<IOException> suppressedExceptions = new ArrayList<IOException>(); in initByteBufferDexPath() local
268 suppressedExceptions.add(suppressed); in initByteBufferDexPath()
272 if (suppressedExceptions.size() > 0) { in initByteBufferDexPath()
273 dexElementsSuppressedExceptions = suppressedExceptions.toArray( in initByteBufferDexPath()
274 new IOException[suppressedExceptions.size()]); in initByteBufferDexPath()
338 List<IOException> suppressedExceptions) { in makeInMemoryDexElements() argument
[all …]
DBaseDexClassLoader.java244 List<Throwable> suppressedExceptions = new ArrayList<Throwable>(); in findClass() local
245 Class c = pathList.findClass(name, suppressedExceptions); in findClass()
261 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