Lines Matching full:until
34 state is locked, acquire() blocks until a call to release() in
96 This method blocks until the lock is unlocked, then sets it to
163 The wait() method blocks until the flag is true. The flag is initially
196 wait() will block until set() is called to set the internal flag
201 """Block until the internal flag is true.
204 immediately. Otherwise, block until another coroutine calls
223 allows one or more coroutines to wait until they are notified by another
249 """Wait until notified.
255 until it is awakened by a notify() or notify_all() call for
286 """Wait until a predicate becomes true.
307 wait() call until it can reacquire the lock. Since notify() does
337 waiting until some other thread calls release().
369 zero on entry, block, waiting until some other coroutine has
505 # Block until the barrier is ready for us,
508 # It is draining or resetting, wait until done
524 # Next waiting tasks will be blocked until the end of draining.
529 # Wait in the barrier until we are released. Raise an exception