Home
last modified time | relevance | path

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

/external/guava/guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/
DAggregateFutureState.java30 private @Nullable Set<Throwable> seenExceptions = null; field in AggregateFutureState
38 if (seenExceptions == null) { in getOrInitSeenExceptions()
39 seenExceptions = newHashSet(); in getOrInitSeenExceptions()
40 addInitialException(seenExceptions); in getOrInitSeenExceptions()
42 return seenExceptions; in getOrInitSeenExceptions()
52 seenExceptions = null; in clearSeenExceptions()
/external/guava/guava/src/com/google/common/util/concurrent/
DAggregateFutureState.java47 @CheckForNull private volatile Set<Throwable> seenExceptions = null; field in AggregateFutureState
100 Set<Throwable> seenExceptionsLocal = seenExceptions; in getOrInitSeenExceptions()
135 seenExceptionsLocal = requireNonNull(seenExceptions); in getOrInitSeenExceptions()
148 seenExceptions = null; in clearSeenExceptions()
193 if (state.seenExceptions == expect) { in compareAndSetSeenExceptions()
194 state.seenExceptions = update; in compareAndSetSeenExceptions()
/external/guava/android/guava/src/com/google/common/util/concurrent/
DAggregateFutureState.java47 @CheckForNull private volatile Set<Throwable> seenExceptions = null; field in AggregateFutureState
100 Set<Throwable> seenExceptionsLocal = seenExceptions; in getOrInitSeenExceptions()
135 seenExceptionsLocal = requireNonNull(seenExceptions); in getOrInitSeenExceptions()
148 seenExceptions = null; in clearSeenExceptions()
193 if (state.seenExceptions == expect) { in compareAndSetSeenExceptions()
194 state.seenExceptions = update; in compareAndSetSeenExceptions()
/external/guava/proguard/
Dconcurrent.pro16 *** seenExceptions;
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJobSupport.kt264 val seenExceptions = identitySet<Throwable>(exceptions.size) in <lambda>() constant
274 unwrapped !is CancellationException && seenExceptions.add(unwrapped)) { in <lambda>()