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

  /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)
queues.py 48 from multiprocessing.synchronize import Lock, BoundedSemaphore, Semaphore, Condition
69 self._sem = BoundedSemaphore(maxsize)
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
127 class BoundedSemaphore(Semaphore):
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
managers.py     [all...]
  /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)
queues.py 48 from multiprocessing.synchronize import Lock, BoundedSemaphore, Semaphore, Condition
69 self._sem = BoundedSemaphore(maxsize)
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
127 class BoundedSemaphore(Semaphore):
137 return '<BoundedSemaphore(value=%s, maxvalue=%s)>' % \
managers.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_threading.py 39 sema = _threading.BoundedSemaphore(value=3)
test_threading.py 82 sema = threading.BoundedSemaphore(value=3)
734 semtype = staticmethod(threading.BoundedSemaphore)
test_contextlib.py 309 lock = threading.BoundedSemaphore()
test_multiprocessing.py 677 sem = self.BoundedSemaphore(2)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dummy_threading.py 39 sema = _threading.BoundedSemaphore(value=3)
test_threading.py 82 sema = threading.BoundedSemaphore(value=3)
734 semtype = staticmethod(threading.BoundedSemaphore)
test_contextlib.py 309 lock = threading.BoundedSemaphore()
test_multiprocessing.py 677 sem = self.BoundedSemaphore(2)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
  /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/chromium_org/third_party/re2/lib/codereview/
codereview.py     [all...]
  /external/regex-re2/lib/codereview/
codereview.py     [all...]

Completed in 735 milliseconds