Searched refs:BoundedSemaphore (Results 1 - 20 of 20) sorted by relevance

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
H A D__init__.py50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
199 def BoundedSemaphore(value=1): function
203 from multiprocessing.synchronize import BoundedSemaphore namespace
204 return BoundedSemaphore(value)
H A Dqueues.py48 from multiprocessing.synchronize import Lock, BoundedSemaphore, Semaphore, Condition namespace
69 self._sem = BoundedSemaphore(maxsize)
H A Dsynchronize.py36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
127 class BoundedSemaphore(Semaphore): class in inherits:Semaphore
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
H A Dmanagers.py1104 SyncManager.register('BoundedSemaphore', threading.BoundedSemaphore,
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
H A D__init__.py50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
199 def BoundedSemaphore(value=1): function
203 from multiprocessing.synchronize import BoundedSemaphore namespace
204 return BoundedSemaphore(value)
H A Dqueues.py48 from multiprocessing.synchronize import Lock, BoundedSemaphore, Semaphore, Condition namespace
69 self._sem = BoundedSemaphore(maxsize)
H A Dsynchronize.py36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
127 class BoundedSemaphore(Semaphore): class in inherits:Semaphore
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
H A Dmanagers.py1104 SyncManager.register('BoundedSemaphore', threading.BoundedSemaphore,
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_dummy_threading.py39 sema = _threading.BoundedSemaphore(value=3)
H A Dtest_contextlib.py309 lock = threading.BoundedSemaphore()
H A Dtest_threading.py82 sema = threading.BoundedSemaphore(value=3)
734 semtype = staticmethod(threading.BoundedSemaphore)
H A Dtest_multiprocessing.py677 sem = self.BoundedSemaphore(2)
2189 'Queue', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore',
2204 'Queue', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore',
2217 'Queue', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore',
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_dummy_threading.py39 sema = _threading.BoundedSemaphore(value=3)
H A Dtest_contextlib.py309 lock = threading.BoundedSemaphore()
H A Dtest_threading.py82 sema = threading.BoundedSemaphore(value=3)
734 semtype = staticmethod(threading.BoundedSemaphore)
H A Dtest_multiprocessing.py677 sem = self.BoundedSemaphore(2)
2189 'Queue', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore',
2204 'Queue', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore',
2217 'Queue', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore',
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
H A D__init__.py37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore namespace
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
H A D__init__.py37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore namespace
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dthreading.py31 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
496 def BoundedSemaphore(*args, **kwargs): function
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dthreading.py31 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
496 def BoundedSemaphore(*args, **kwargs): function

Completed in 381 milliseconds