Lines Matching full:acquire
19 of times it has been acquired by the same thread. Each acquire()
29 A thread intending to acquire both locks should acquire __wait
49 def acquire(self, flag=1): member in Lock
50 """Acquire the lock.
53 when it cannot acquire the __wait lock without blocking (it
54 may still block for a little while in order to acquire the
61 self.__mutex.acquire()
68 locked = self.__wait.acquire(flag)
72 self.__mutex.acquire()
87 Only allow another thread to acquire the lock when the count
91 self.__mutex.acquire()
108 lock.acquire()
114 lock.acquire()
123 lock.acquire()
127 lock.acquire()
152 self.inst.__lock__.acquire()
241 pwait.acquire()
243 cwait.acquire()
248 pwait.acquire()
250 cwait.acquire()