Home
last modified time | relevance | path

Searched refs:seenExceptions (Results 1 – 4 of 4) sorted by relevance

/external/guava/guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/
DAggregateFutureState.java27 private Set<Throwable> seenExceptions = null; field in AggregateFutureState
35 if (seenExceptions == null) { in getOrInitSeenExceptions()
36 seenExceptions = newHashSet(); in getOrInitSeenExceptions()
37 addInitialException(seenExceptions); in getOrInitSeenExceptions()
39 return seenExceptions; in getOrInitSeenExceptions()
49 seenExceptions = null; in clearSeenExceptions()
/external/guava/guava/src/com/google/common/util/concurrent/
DAggregateFutureState.java43 private volatile Set<Throwable> seenExceptions = null; field in AggregateFutureState
96 Set<Throwable> seenExceptionsLocal = seenExceptions; in getOrInitSeenExceptions()
128 seenExceptionsLocal = seenExceptions; in getOrInitSeenExceptions()
141 seenExceptions = null; in clearSeenExceptions()
182 if (state.seenExceptions == expect) { in compareAndSetSeenExceptions()
183 state.seenExceptions = update; in compareAndSetSeenExceptions()
/external/guava/android/guava/src/com/google/common/util/concurrent/
DAggregateFutureState.java43 private volatile Set<Throwable> seenExceptions = null; field in AggregateFutureState
96 Set<Throwable> seenExceptionsLocal = seenExceptions; in getOrInitSeenExceptions()
128 seenExceptionsLocal = seenExceptions; in getOrInitSeenExceptions()
141 seenExceptions = null; in clearSeenExceptions()
182 if (state.seenExceptions == expect) { in compareAndSetSeenExceptions()
183 state.seenExceptions = update; in compareAndSetSeenExceptions()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJobSupport.kt271 val seenExceptions = identitySet<Throwable>(exceptions.size) in <lambda>() constant
281 unwrapped !is CancellationException && seenExceptions.add(unwrapped)) { in <lambda>()