HomeSort by relevance Sort by last modified time
    Searched defs:BoundedSemaphore (Results 1 - 20 of 20) sorted by null

  /external/python/cpython2/Lib/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
199 def BoundedSemaphore(value=1):
203 from multiprocessing.synchronize import BoundedSemaphore
204 return BoundedSemaphore(value)
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
127 class BoundedSemaphore(Semaphore):
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
  /external/python/cpython3/Lib/asyncio/
locks.py 3 __all__ = ['Lock', 'Event', 'Condition', 'Semaphore', 'BoundedSemaphore']
464 class BoundedSemaphore(Semaphore):
477 raise ValueError('BoundedSemaphore released too many times')
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
199 def BoundedSemaphore(value=1):
203 from multiprocessing.synchronize import BoundedSemaphore
204 return BoundedSemaphore(value)
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
127 class BoundedSemaphore(Semaphore):
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
199 def BoundedSemaphore(value=1):
203 from multiprocessing.synchronize import BoundedSemaphore
204 return BoundedSemaphore(value)
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
127 class BoundedSemaphore(Semaphore):
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
199 def BoundedSemaphore(value=1):
203 from multiprocessing.synchronize import BoundedSemaphore
204 return BoundedSemaphore(value)
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
127 class BoundedSemaphore(Semaphore):
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
199 def BoundedSemaphore(value=1):
203 from multiprocessing.synchronize import BoundedSemaphore
204 return BoundedSemaphore(value)
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
127 class BoundedSemaphore(Semaphore):
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
  /external/python/cpython3/Lib/multiprocessing/
synchronize.py 11 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
143 class BoundedSemaphore(Semaphore):
context.py 84 def BoundedSemaphore(self, value=1):
86 from .synchronize import BoundedSemaphore
87 return BoundedSemaphore(value, ctx=self.get_context())
  /external/python/cpython2/Lib/
threading.py 32 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
497 def BoundedSemaphore(*args, **kwargs):
    [all...]
  /external/python/cpython3/Lib/
threading.py 27 'Event', 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
449 class BoundedSemaphore(Semaphore):
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
threading.py 31 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
496 def BoundedSemaphore(*args, **kwargs):
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
threading.py 31 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
496 def BoundedSemaphore(*args, **kwargs):
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
threading.py 31 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
496 def BoundedSemaphore(*args, **kwargs):
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
threading.py 31 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
496 def BoundedSemaphore(*args, **kwargs):
    [all...]
  /external/python/cpython3/Lib/test/
_test_multiprocessing.py 806 sem = self.BoundedSemaphore(2)
    [all...]

Completed in 155 milliseconds