Lines Matching refs:threading
18 import threading
145 self.mutex = threading.Lock()
151 self.stop_event = threading.Event()
154 accepter = threading.Thread(target=self.accepter)
175 t = threading.Thread(target=self.handle_request, args=(c,))
218 threading.current_thread().name)
275 threading.current_thread().name)
288 threading.current_thread().name)
388 threading.current_thread().name = name
738 if threading.current_thread().name != 'MainThread':
739 name += '|' + threading.current_thread().name
752 threading.current_thread().name)
821 threading.current_thread().name)
1143 SyncManager.register('Event', threading.Event, EventProxy)
1144 SyncManager.register('Lock', threading.Lock, AcquirerProxy)
1145 SyncManager.register('RLock', threading.RLock, AcquirerProxy)
1146 SyncManager.register('Semaphore', threading.Semaphore, AcquirerProxy)
1147 SyncManager.register('BoundedSemaphore', threading.BoundedSemaphore,
1149 SyncManager.register('Condition', threading.Condition, ConditionProxy)
1150 SyncManager.register('Barrier', threading.Barrier, BarrierProxy)