Home
last modified time | relevance | path

Searched refs:exceptionRef (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Connectivity/staticlibs/device/com/android/net/module/util/
DHandlerUtils.java83 AtomicReference<RuntimeException> exceptionRef = new AtomicReference<>(); in runWithScissorsForDump() local
88 exceptionRef.set(e); in runWithScissorsForDump()
98 exceptionRef.compareAndSet(null, new IllegalStateException("Thread interrupted", e)); in runWithScissorsForDump()
101 final RuntimeException e = exceptionRef.get(); in runWithScissorsForDump()
/packages/apps/Launcher3/tests/src_deviceless/com/android/launcher3/util/
DRobolectricDeviceRunner.kt80 val exceptionRef = AtomicReference<Throwable>() in evaluate() constant
85 exceptionRef.set(throwable) in evaluate()
88 exceptionRef.get()?.let { throw it } in evaluate()