/prebuilts/go/darwin-x86/src/sync/ |
rwmutex.go | 35 // RLock locks rw for reading. 36 func (rw *RWMutex) RLock() { 51 // RUnlock undoes a single RLock call; 104 // goroutine. One goroutine may RLock (Lock) an RWMutex and then 132 // the Lock and Unlock methods by calling rw.RLock and rw.RUnlock. 139 func (r *rlocker) Lock() { (*RWMutex)(r).RLock() }
|
/prebuilts/go/linux-x86/src/sync/ |
rwmutex.go | 35 // RLock locks rw for reading. 36 func (rw *RWMutex) RLock() { 51 // RUnlock undoes a single RLock call; 104 // goroutine. One goroutine may RLock (Lock) an RWMutex and then 132 // the Lock and Unlock methods by calling rw.RLock and rw.RUnlock. 139 func (r *rlocker) Lock() { (*RWMutex)(r).RLock() }
|
/external/python/cpython2/Lib/multiprocessing/ |
__init__.py | 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 178 def RLock(): 182 from multiprocessing.synchronize import RLock 183 return 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/gdb/darwin-x86/lib/python2.7/multiprocessing/ |
__init__.py | 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 178 def RLock(): 182 from multiprocessing.synchronize import RLock 183 return 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/gdb/linux-x86/lib/python2.7/multiprocessing/ |
__init__.py | 50 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Condition', 178 def RLock(): 182 from multiprocessing.synchronize import RLock 183 return 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/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()
|
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()
|
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/ndk/r11/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/ndk/r13/sources/cxx-stl/llvm-libc++/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());
|
/external/libcxx/src/ |
debug.cpp | 104 typedef lock_guard<mutex_type> RLock; 177 RLock _(mut()); 435 RLock _(mut()); 445 RLock _(mut()); 455 RLock _(mut()); 465 RLock _(mut()); 475 RLock _(mut());
|
/external/python/cpython2/Lib/ |
threading.py | 32 'Lock', 'RLock', 'Semaphore', 'BoundedSemaphore', 'Thread', 114 def RLock(*args, **kwargs): 248 If the lock argument is given and not None, it must be a Lock or RLock 249 object, and it is used as the underlying lock. Otherwise, a new RLock object 263 lock = RLock() 324 When the underlying lock is an RLock, it is not released using its 327 of the RLock class is used, which really unlocks it even when it has [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
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/gdb/linux-x86/lib/python2.7/ |
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/ |
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.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...] |