Home | History | Annotate | Download | only in concurrent

Lines Matching refs:broken

148      * and all the rest are either broken or tripped.
153 boolean broken; // initially false
170 * generation or when broken.
187 * Sets current barrier generation as broken and wakes up everyone.
191 generation.broken = true;
207 if (g.broken)
231 // loop until tripped, broken, interrupted, or timed out
239 if (g == generation && ! g.broken) {
250 if (g.broken)
333 * or if the barrier {@linkplain #isBroken is broken} when
339 * {@link BrokenBarrierException} and the barrier is placed in the broken
348 * the broken state.
358 * broken when {@code await} was called, or the barrier
400 * or if the barrier {@linkplain #isBroken is broken} when
406 * BrokenBarrierException} and the barrier is placed in the broken
415 * the broken state.
425 * In this case the barrier will be broken.
428 * waiting, or the barrier was reset, or the barrier was broken
440 * Queries if this barrier is in a broken state.
451 return generation.broken;