HomeSort by relevance Sort by last modified time
    Searched full:rlock (Results 1 - 25 of 56) sorted by null

1 2 3

  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
BaseObj.java 91 ReentrantReadWriteLock.ReadLock rlock = mRS.mRWLock.readLock(); local
92 rlock.lock();
96 rlock.unlock();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_dummy_threading.py 41 mutex = _threading.RLock()
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_contextlib.py 289 lock = threading.RLock()
  /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()
  /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()
  /frameworks/base/rs/java/android/renderscript/
BaseObj.java 123 ReentrantReadWriteLock.ReadLock rlock = mRS.mRWLock.readLock(); local
124 rlock.lock();
129 rlock.unlock();
  /external/libcxx/src/
debug.cpp 40 typedef lock_guard<mutex_type> RLock;
111 RLock _(mut());
351 RLock _(mut());
359 RLock _(mut());
367 RLock _(mut());
375 RLock _(mut());
383 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
  /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...]
  /external/chromium_org/third_party/skia/tools/
svn.py 58 self._rlock = threading.RLock()
  /external/skia/tools/
svn.py 58 self._rlock = threading.RLock()
  /external/sonivox/jet_tools/JetCreator/
JetPreview.py 42 self.playerLock = threading.RLock()
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector1.cc 160 if (wlock) // Only a recursive rlock may be held.
  /external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp     [all...]

Completed in 1873 milliseconds

1 2 3