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

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
178 def RLock():
182 from multiprocessing.synchronize import RLock
183 return RLock()
sharedctypes.py 39 from multiprocessing import heap, RLock
103 lock = RLock()
119 lock = RLock()
208 self._lock = lock or RLock()
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
169 class RLock(SemLock):
189 return '<RLock(%s, %s)>' % (name, count)
198 self._lock = lock or RLock()
managers.py 167 self.mutex = threading.RLock()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
__init__.py 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition',
178 def RLock():
182 from multiprocessing.synchronize import RLock
183 return RLock()
sharedctypes.py 39 from multiprocessing import heap, RLock
103 lock = RLock()
119 lock = RLock()
208 self._lock = lock or RLock()
synchronize.py 36 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 'Event'
169 class RLock(SemLock):
189 return '<RLock(%s, %s)>' % (name, count)
198 self._lock = lock or RLock()
managers.py 167 self.mutex = threading.RLock()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_threading_local.py 156 object.__setattr__(self, '_local__lock', RLock())
251 from threading import current_thread, RLock
threading.py 31 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
113 def RLock(*args, **kwargs):
247 If the lock argument is given and not None, it must be a Lock or RLock
248 object, and it is used as the underlying lock. Otherwise, a new RLock object
262 lock = RLock()
323 When the underlying lock is an RLock, it is not released using its
326 of the RLock class is used, which really unlocks it even when it has
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_threading_local.py 156 object.__setattr__(self, '_local__lock', RLock())
251 from threading import current_thread, RLock
threading.py 31 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread',
113 def RLock(*args, **kwargs):
247 If the lock argument is given and not None, it must be a Lock or RLock
248 object, and it is used as the underlying lock. Otherwise, a new RLock object
262 lock = RLock()
323 When the underlying lock is an RLock, it is not released using its
326 of the RLock class is used, which really unlocks it even when it has
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_threading.py 41 mutex = _threading.RLock()
test_threading.py 83 mutex = threading.RLock()
718 locktype = staticmethod(threading.RLock)
724 # An Condition uses an RLock by default and exports its API.
test_contextlib.py 289 lock = threading.RLock()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_dummy_threading.py 41 mutex = _threading.RLock()
test_threading.py 83 mutex = threading.RLock()
718 locktype = staticmethod(threading.RLock)
724 # An Condition uses an RLock by default and exports its API.
test_contextlib.py 289 lock = threading.RLock()
  /external/libcxx/src/
debug.cpp 41 typedef lock_guard<mutex_type> RLock;
114 RLock _(mut());
378 RLock _(mut());
388 RLock _(mut());
398 RLock _(mut());
408 RLock _(mut());
418 RLock _(mut());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
debug.cpp 41 typedef lock_guard<mutex_type> RLock;
114 RLock _(mut());
378 RLock _(mut());
388 RLock _(mut());
398 RLock _(mut());
408 RLock _(mut());
418 RLock _(mut());
  /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
  /external/sonivox/jet_tools/JetCreator/
JetPreview.py 42 self.playerLock = threading.RLock()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/
__init__.py 199 #This needs to be an RLock because fileConfig() creates and configures
202 #the lock would already have been acquired - so we need an RLock.
206 _lock = threading.RLock()
689 self.lock = threading.RLock()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
__init__.py 199 #This needs to be an RLock because fileConfig() creates and configures
202 #the lock would already have been acquired - so we need an RLock.
206 _lock = threading.RLock()
689 self.lock = threading.RLock()
    [all...]

Completed in 543 milliseconds

1 2