Home | History | Annotate | Download | only in tsccm

Lines Matching defs:cond

58     private final Condition cond;
74 * @param cond the condition for which to wait
78 public WaitingThread(Condition cond, RouteSpecificPool pool) {
80 if (cond == null) {
84 this.cond = cond;
96 return this.cond;
146 // the lock would not be released on calling cond.await() below.
162 success = this.cond.awaitUntil(deadline);
164 this.cond.await();
193 this.cond.signalAll();
198 this.cond.signalAll();