Searched refs:suppressedExceptions (Results 1 – 4 of 4) sorted by relevance
239 private List<Throwable> suppressedExceptions = Collections.emptyList(); field in Throwable379 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 …]
162 ArrayList<IOException> suppressedExceptions = new ArrayList<IOException>(); in DexPathList() local165 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() local289 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 …]
193 List<Throwable> suppressedExceptions = new ArrayList<Throwable>(); in findClass() local194 Class c = pathList.findClass(name, suppressedExceptions); in findClass()198 for (Throwable t : suppressedExceptions) { in findClass()
170 private java.util.List<java.lang.Throwable> suppressedExceptions; field in Throwable