Lines Matching full:acquire
61 await lock.acquire()
70 .. coroutinemethod:: acquire()
72 Acquire the lock.
77 When more than one coroutine is blocked in :meth:`acquire`
204 await cond.acquire()
210 .. coroutinemethod:: acquire()
212 Acquire the underlying lock.
277 :meth:`acquire` call and incremented by each :meth:`release` call.
278 The counter can never go below zero; when :meth:`acquire` finds
303 await sem.acquire()
309 .. coroutinemethod:: acquire()
311 Acquire a semaphore.
324 Can wake up a task waiting to acquire the semaphore.
327 making more ``release()`` calls than ``acquire()`` calls.