Lines Matching refs:threading
18 import threading
162 self.mutex = threading.Lock()
168 self.stop_event = threading.Event()
171 accepter = threading.Thread(target=self.accepter)
192 t = threading.Thread(target=self.handle_request, args=(c,))
243 threading.current_thread().name)
300 threading.current_thread().name)
313 threading.current_thread().name)
419 threading.current_thread().name = name
803 if threading.current_thread().name != 'MainThread':
804 name += '|' + threading.current_thread().name
817 threading.current_thread().name)
886 threading.current_thread().name)
1213 SyncManager.register('Event', threading.Event, EventProxy)
1214 SyncManager.register('Lock', threading.Lock, AcquirerProxy)
1215 SyncManager.register('RLock', threading.RLock, AcquirerProxy)
1216 SyncManager.register('Semaphore', threading.Semaphore, AcquirerProxy)
1217 SyncManager.register('BoundedSemaphore', threading.BoundedSemaphore,
1219 SyncManager.register('Condition', threading.Condition, ConditionProxy)
1220 SyncManager.register('Barrier', threading.Barrier, BarrierProxy)