Home | History | Annotate | Download | only in tsccm

Lines Matching defs:cond

53     private final Condition cond;
69 * @param cond the condition for which to wait
73 public WaitingThread(Condition cond, RouteSpecificPool pool) {
75 if (cond == null) {
79 this.cond = cond;
91 return this.cond;
141 // the lock would not be released on calling cond.await() below.
157 success = this.cond.awaitUntil(deadline);
159 this.cond.await();
188 this.cond.signalAll();
193 this.cond.signalAll();