Searched refs:suppressed (Results 1 – 10 of 10) sorted by relevance
/libcore/dalvik/src/main/java/dalvik/system/ |
D | DexPathList.java | 287 } catch (IOException suppressed) { in initByteBufferDexPath() 288 System.logE("Unable to load dex files", suppressed); in initByteBufferDexPath() 289 suppressedExceptions.add(suppressed); in initByteBufferDexPath() 352 } catch (IOException suppressed) { in makeInMemoryDexElements() 353 System.logE("Unable to load dex file: " + buf, suppressed); in makeInMemoryDexElements() 354 suppressedExceptions.add(suppressed); in makeInMemoryDexElements() 397 } catch (IOException suppressed) { in makeDexElements() 398 System.logE("Unable to load dex file: " + file, suppressed); in makeDexElements() 399 suppressedExceptions.add(suppressed); in makeDexElements() 404 } catch (IOException suppressed) { in makeDexElements() [all …]
|
D | DexFile.java | 284 public Class loadClassBinaryName(String name, ClassLoader loader, List<Throwable> suppressed) { in loadClassBinaryName() argument 285 return defineClass(name, loader, mCookie, this, suppressed); in loadClassBinaryName() 289 DexFile dexFile, List<Throwable> suppressed) { in defineClass() argument 294 if (suppressed != null) { in defineClass() 295 suppressed.add(e); in defineClass() 298 if (suppressed != null) { in defineClass() 299 suppressed.add(e); in defineClass()
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | ThrowableTest.java | 180 Throwable suppressed = newThrowable("Suppressed", "A", "B", "E", "F"); in testPrintStackTraceWithEverything() local 182 throwable.addSuppressed(suppressed); in testPrintStackTraceWithEverything() 183 suppressed.addSuppressed(newThrowable("Suppressed/Suppressed", "A", "B", "E", "G")); in testPrintStackTraceWithEverything() 184 suppressed.initCause(newThrowable("Suppressed/Cause", "A", "B", "E", "H")); in testPrintStackTraceWithEverything() 320 Throwable suppressed = newThrowable("Suppressed"); in testEnableSuppressionSerialization() local 321 deserialized.addSuppressed(suppressed); in testEnableSuppressionSerialization() 322 assertSuppressed(deserialized, suppressed); in testEnableSuppressionSerialization()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | Throwable.java | 953 List<Throwable> suppressed = null; in readObject() local 958 suppressed = Collections.emptyList(); in readObject() 960 suppressed = new ArrayList<>(1); in readObject() 968 suppressed.add(t); in readObject() 971 suppressedExceptions = suppressed; in readObject()
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
D | SocketChannel.java | 193 } catch (Throwable suppressed) { in open() 194 x.addSuppressed(suppressed); in open()
|
/libcore/dalvik/test-rules/src/test/java/libcore/dalvik/system/ |
D | CloseGuardSupportTest.java | 178 Throwable[] suppressed = exception.getSuppressed(); in checkResourceNotReleased() local 179 assertEquals("Suppressed count", 1, suppressed.length); in checkResourceNotReleased() 180 exception = suppressed[0]; in checkResourceNotReleased()
|
/libcore/ojluni/src/main/java/java/nio/file/ |
D | CopyMoveHelper.java | 142 } catch (Throwable suppressed) { in copyToForeignTarget() 143 x.addSuppressed(suppressed); in copyToForeignTarget()
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | UnixAsynchronousSocketChannelImpl.java | 289 } catch (Throwable suppressed) { in finishConnect() 290 e.addSuppressed(suppressed); in finishConnect() 380 } catch (Throwable suppressed) { in implConnect() 381 e.addSuppressed(suppressed); in implConnect()
|
D | UnixAsynchronousServerSocketChannelImpl.java | 262 } catch (Throwable suppressed) { in finishAccept() 263 x.addSuppressed(suppressed); in finishAccept()
|
D | FileChannelImpl.java | 585 } catch (Throwable suppressed) { in transferToTrustedChannel() 586 e.addSuppressed(suppressed); in transferToTrustedChannel()
|