Home
last modified time | relevance | path

Searched refs:get_lock (Results 1 – 7 of 7) sorted by relevance

/external/libcxxabi/src/
Dcxa_guard.cpp82 get_lock(uint64_t x) in get_lock() function
98 get_lock(uint64_t x) in get_lock() function
118 get_lock(uint64_t x) in get_lock() function
143 get_lock(uint32_t x) in get_lock() function
195 lock_type lock = get_lock(*guard_object); in __cxa_guard_acquire()
205 lock = get_lock(*guard_object); in __cxa_guard_acquire()
214 while (get_lock(*guard_object)) in __cxa_guard_acquire()
/external/vixl/tools/
Dthreaded_tests.py87 with n_tests_passed.get_lock(): n_tests_passed.value += 1
89 with n_tests_failed.get_lock(): n_tests_failed.value += 1
/external/autotest/site_utils/tester_feedback/
Dquery_delegate.py37 with self._query_count.get_lock():
/external/libmojo/ipc/
Dattachment_broker.h135 base::Lock* get_lock() { return &lock_; } in get_lock() function
/external/python/cpython2/Lib/multiprocessing/
Dsharedctypes.py224 def get_lock(self): member in SynchronizedBase
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py948 lock1 = val1.get_lock()
952 lock2 = val2.get_lock()
957 lock3 = val3.get_lock()
1035 lock1 = arr1.get_lock()
1039 lock2 = arr2.get_lock()
1044 lock3 = arr3.get_lock()
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1149 with counter.get_lock():
1272 :meth:`get_lock` returns the lock object used for synchronization.