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

1 2

  /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)
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)>' % \
  /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)
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)>' % \
  /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)>' % \
  /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)
  /prebuilts/gdb/darwin-x86/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()
  /prebuilts/gdb/linux-x86/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()
  /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)
  /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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 37 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
  /prebuilts/gdb/linux-x86/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/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

Completed in 468 milliseconds

1 2