Home
last modified time | relevance | path

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

12

/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()
Dmanagers.py167 self.mutex = threading.RLock()
1103 SyncManager.register('RLock', threading.RLock, AcquirerProxy)
/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())
Dmp_synchronize.py130 mutex = multiprocessing.RLock()
/external/python/cpython2/Lib/
D_threading_local.py156 object.__setattr__(self, '_local__lock', RLock())
251 from threading import current_thread, RLock
Dthreading.py114 def RLock(*args, **kwargs): function
263 lock = RLock()
1245 self.mon = RLock()
/external/python/cpython2/Lib/test/
Dtest_dummy_threading.py41 mutex = _threading.RLock()
Dtest_threading.py87 mutex = threading.RLock()
873 locktype = staticmethod(threading.RLock)
Dtest_contextlib.py297 lock = threading.RLock()
/external/libmojo/third_party/catapult/devil/devil/android/
Ddevice_blacklist.py15 self._blacklist_lock = threading.RLock()
/external/autotest/client/common_lib/
Ddecorators_unittest.py29 self.lock = threading.RLock()
/external/chromium-trace/catapult/devil/devil/android/
Ddevice_blacklist.py17 self._blacklist_lock = threading.RLock()
/external/python/cpython2/Tools/scripts/
Danalyze_dxp.py35 _profile_lock = threading.RLock()
/external/toolchain-utils/automation/server/
Dmachine_manager.py30 self._lock = threading.RLock()
/external/python/cpython2/Lib/multiprocessing/dummy/
D__init__.py53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
/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()
Dmultiprocessing.rst218 :class:`dict`, :class:`~managers.Namespace`, :class:`Lock`, :class:`RLock`,
953 If *lock* is specified then it should be a :class:`Lock` or :class:`RLock`
1017 .. class:: RLock()
1019 A recursive lock object: a close analog of :class:`threading.RLock`. A
1025 Note that :class:`RLock` is actually a factory function which returns an
1026 instance of ``multiprocessing.synchronize.RLock`` initialized with a
1029 :class:`RLock` supports the :term:`context manager` protocol and thus may be
1044 implementation of :meth:`threading.RLock.acquire`, starting with the name
1057 not exist in this method's analog, :meth:`threading.RLock.acquire`.
1074 differs from the implemented behavior in :meth:`threading.RLock.release`.
[all …]
/external/toolchain-utils/crb/
Dmachine_manager_singleton.py32 _lock = threading.RLock()
/external/sonivox/jet_tools/JetCreator/
DJetPreview.py42 self.playerLock = threading.RLock()
/external/autotest/client/deps/lansim/src/py/
Dsimulator.py307 self._lock = threading.RLock()
/external/autotest/site_utils/
Drpc_flight_recorder.py128 self._servers_lock = self._manager.RLock()
/external/python/cpython2/Lib/logging/
D__init__.py201 _lock = threading.RLock()
699 self.lock = threading.RLock()

12