Home
last modified time | relevance | path

Searched refs:RLock (Results 1 – 25 of 82) sorted by relevance

1234

/external/python/cpython2/Lib/multiprocessing/
D__init__.py178 def RLock(): function
182 from multiprocessing.synchronize import RLock
183 return RLock()
Dsharedctypes.py39 from multiprocessing import heap, RLock
108 lock = RLock()
124 lock = RLock()
213 self._lock = lock or RLock()
Dsynchronize.py169 class RLock(SemLock): class
198 self._lock = lock or RLock()
/external/llvm-project/libcxx/src/
Ddebug.cpp67 typedef lock_guard<mutex_type> RLock; typedef
140 RLock _(mut()); in __find_c_from_i()
395 RLock _(mut()); in __dereferenceable()
405 RLock _(mut()); in __decrementable()
415 RLock _(mut()); in __addable()
425 RLock _(mut()); in __subscriptable()
435 RLock _(mut()); in __less_than_comparable()
/external/libcxx/src/
Ddebug.cpp104 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/
Dmp_benchmarks.py215 test_lockspeed(threading.RLock())
219 test_lockspeed(multiprocessing.RLock())
223 test_lockspeed(manager.RLock())
/external/python/cpython2/Lib/
D_threading_local.py152 object.__setattr__(self, '_local__lock', RLock())
247 from threading import current_thread, RLock
/external/python/cpython3/Lib/
D_threading_local.py213 impl.locallock = RLock()
242 from threading import current_thread, RLock
Dbz2.py16 from threading import RLock
58 self._lock = RLock()
Dsched.py61 self._lock = threading.RLock()
/external/python/cpython3/Lib/multiprocessing/
Dsharedctypes.py79 lock = ctx.RLock()
93 lock = ctx.RLock()
188 self._lock = ctx.RLock()
Dcontext.py70 def RLock(self): member in BaseContext
72 from .synchronize import RLock
73 return RLock(ctx=self.get_context())
Dsynchronize.py184 class RLock(SemLock): class
213 self._lock = lock or ctx.RLock()
/external/tensorflow/tensorflow/python/summary/writer/
Dwriter_cache.py38 _lock = threading.RLock()
/external/python/cpython3/Lib/test/
Dtest_threadsignals.py126 rlock = thread.RLock()
184 self.acquire_retries_on_intr(thread.RLock())
/external/python/cpython2/Lib/test/
Dtest_dummy_threading.py41 mutex = _threading.RLock()
/external/autotest/client/common_lib/
Ddecorators_unittest.py34 self.lock = threading.RLock()
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_denylist.py16 self._denylist_lock = threading.RLock()
/external/python/cpython3/Tools/scripts/
Danalyze_dxp.py34 _profile_lock = threading.RLock()
/external/python/cpython2/Tools/scripts/
Danalyze_dxp.py35 _profile_lock = threading.RLock()
/external/tensorflow/tensorflow/python/framework/
Ddevice.py63 _cache_lock = threading.RLock()
/external/python/cpython3/Lib/multiprocessing/dummy/
D__init__.py26 from threading import Lock, RLock, Semaphore, BoundedSemaphore
/external/python/cpython2/Lib/multiprocessing/dummy/
D__init__.py53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
/external/libcap/cap/
Dflags.go17 c.mu.RLock()
/external/python/cpython2/Doc/library/
Dthreading.rst122 .. 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()

1234