Searched defs:_threading (Results 1 - 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_dummy_threading.py3 import dummy_threading as _threading namespace
8 class TestThread(_threading.Thread):
39 sema = _threading.BoundedSemaphore(value=3)
41 mutex = _threading.RLock()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DQueue.py5 import threading as _threading namespace
7 import dummy_threading as _threading namespace
33 self.mutex = _threading.Lock()
36 self.not_empty = _threading.Condition(self.mutex)
39 self.not_full = _threading.Condition(self.mutex)
42 self.all_tasks_done = _threading.Condition(self.mutex)
H A Dcookielib.py34 import threading as _threading namespace
36 import dummy_threading as _threading namespace
1222 self._cookies_lock = _threading.RLock()

Completed in 23 milliseconds