/external/golang-protobuf/reflect/protoregistry/ |
D | registry.go | 227 globalMutex.RLock() 320 globalMutex.RLock() 341 globalMutex.RLock() 355 globalMutex.RLock() 373 globalMutex.RLock() 390 globalMutex.RLock() 599 globalMutex.RLock() 620 globalMutex.RLock() 643 globalMutex.RLock() 671 globalMutex.RLock() [all …]
|
/external/python/cpython2/Lib/multiprocessing/ |
D | __init__.py | 178 def RLock(): function 182 from multiprocessing.synchronize import RLock 183 return RLock()
|
D | sharedctypes.py | 39 from multiprocessing import heap, RLock 108 lock = RLock() 124 lock = RLock() 213 self._lock = lock or RLock()
|
D | synchronize.py | 169 class RLock(SemLock): class 198 self._lock = lock or RLock()
|
/external/cronet/buildtools/third_party/libc++/trunk/src/ |
D | debug.cpp | 48 typedef lock_guard<mutex_type> RLock; typedef 121 RLock _(mut()); in __find_c_from_i() 376 RLock _(mut()); in __dereferenceable() 386 RLock _(mut()); in __decrementable() 396 RLock _(mut()); in __addable() 406 RLock _(mut()); in __subscriptable() 416 RLock _(mut()); in __less_than_comparable()
|
/external/python/cachetools/src/cachetools/ |
D | func.py | 12 from threading import RLock 14 from dummy_threading import RLock 49 lock = RLock()
|
/external/libcxx/src/ |
D | debug.cpp | 104 typedef lock_guard<mutex_type> RLock; typedef 177 RLock _(mut()); in __find_c_from_i() 435 RLock _(mut()); in __dereferenceable() 445 RLock _(mut()); in __decrementable() 455 RLock _(mut()); in __addable() 465 RLock _(mut()); in __subscriptable() 475 RLock _(mut()); in __less_than_comparable()
|
/external/python/cpython2/Doc/includes/ |
D | mp_benchmarks.py | 215 test_lockspeed(threading.RLock()) 219 test_lockspeed(multiprocessing.RLock()) 223 test_lockspeed(manager.RLock())
|
/external/python/cpython3/Lib/ |
D | _threading_local.py | 213 impl.locallock = RLock() 242 from threading import current_thread, RLock
|
D | threading.py | 46 _CRLock = _thread.RLock 90 def RLock(*args, **kwargs): function 238 lock = RLock() 782 _active_limbo_lock = RLock() 1592 _active_limbo_lock = RLock()
|
D | sched.py | 57 self._lock = threading.RLock()
|
/external/python/cpython2/Lib/ |
D | _threading_local.py | 152 object.__setattr__(self, '_local__lock', RLock()) 247 from threading import current_thread, RLock
|
/external/python/cpython3/Lib/multiprocessing/ |
D | sharedctypes.py | 79 lock = ctx.RLock() 93 lock = ctx.RLock() 188 self._lock = ctx.RLock()
|
D | context.py | 70 def RLock(self): member in BaseContext 72 from .synchronize import RLock 73 return RLock(ctx=self.get_context())
|
D | synchronize.py | 184 class RLock(SemLock): class 213 self._lock = lock or ctx.RLock()
|
/external/tensorflow/tensorflow/python/summary/writer/ |
D | writer_cache.py | 34 _lock = threading.RLock()
|
/external/python/cpython3/Lib/test/ |
D | test_threadsignals.py | 126 rlock = thread.RLock() 184 self.acquire_retries_on_intr(thread.RLock())
|
/external/python/cpython2/Lib/test/ |
D | test_dummy_threading.py | 41 mutex = _threading.RLock()
|
/external/autotest/client/common_lib/ |
D | decorators_unittest.py | 35 self.lock = threading.RLock()
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | device_denylist.py | 16 self._denylist_lock = threading.RLock()
|
/external/python/cpython2/Tools/scripts/ |
D | analyze_dxp.py | 35 _profile_lock = threading.RLock()
|
/external/python/cpython3/Tools/scripts/ |
D | analyze_dxp.py | 34 _profile_lock = threading.RLock()
|
/external/python/cpython2/Lib/multiprocessing/dummy/ |
D | __init__.py | 53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
|
/external/python/cpython3/Lib/multiprocessing/dummy/ |
D | __init__.py | 26 from threading import Lock, RLock, Semaphore, BoundedSemaphore
|
/external/python/cpython2/Doc/library/ |
D | threading.rst | 122 .. function:: RLock() 454 RLock Objects 471 .. method:: RLock.acquire([blocking=1]) 491 .. method:: RLock.release() 565 or :class:`RLock` object, and it is used as the underlying lock. Otherwise, 566 a new :class:`RLock` object is created and used as the underlying lock. 592 When the underlying lock is an :class:`RLock`, it is not released using 595 interface of the :class:`RLock` class is used, which really unlocks it 805 Currently, :class:`Lock`, :class:`RLock`, :class:`Condition`, 811 some_rlock = threading.RLock()
|