Searched refs:suppressedExceptions (Results 1 – 4 of 4) sorted by relevance
248 private List<Throwable> suppressedExceptions = Collections.emptyList(); field in Throwable388 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 …]
164 ArrayList<IOException> suppressedExceptions = new ArrayList<IOException>(); in DexPathList() local167 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() local268 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 …]
244 List<Throwable> suppressedExceptions = new ArrayList<Throwable>(); in findClass() local245 Class c = pathList.findClass(name, suppressedExceptions); in findClass()261 for (Throwable t : suppressedExceptions) { in findClass()
170 private java.util.List<java.lang.Throwable> suppressedExceptions; field in Throwable