Searched refs:Lock (Results 201 - 225 of 786) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/tsan/benchmarks/
H A Dvts_many_threads_bench.cc35 void Lock() { pthread_mutex_lock(&m_); } function in class:Mutex
64 mutexes[(offset + i) % kNumMutexes].Lock();
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_bench.cc97 t.Lock(m);
101 m.Lock();
/external/llvm/lib/CodeGen/
H A DPseudoSourceValue.cpp29 sys::Mutex Lock; // Guards FSValues, but not the values inside it. member in struct:__anon25786::PSVGlobalsTy
71 sys::ScopedLock locked(PG.Lock);
/external/valgrind/main/drd/tests/
H A Dhold_lock_2.stderr.exp8 Lock on rwlock 0x........ was held during ... ms (threshold: 500 ms).
/external/valgrind/main/helgrind/
H A Dhg_errors.h59 void HG_(record_error_UnlockUnlocked) ( Thread*, Lock* );
60 void HG_(record_error_UnlockForeign) ( Thread*, Thread*, Lock* );
H A Dhg_errors.c94 /* maps from Lock .unique fields to LockP*s */
106 Lock* lk1 = (Lock*)lk1W;
107 Lock* lk2 = (Lock*)lk2W;
115 /* Given a normal Lock (LockN), convert it to a persistent Lock
127 the corresponding Lock structures we maintain will have been freed.
130 linked list of all Lock structures. That stops us prodding around
131 in potentially freed-up Lock structure
[all...]
/external/chromium_org/base/threading/
H A Dthread_collision_warner_unittest.cc269 QueueUser(NonThreadSafeQueue& queue, base::Lock& lock)
285 base::Lock& lock_;
292 base::Lock lock;
343 QueueUser(NonThreadSafeQueue& queue, base::Lock& lock)
363 base::Lock& lock_;
370 base::Lock lock;
/external/chromium_org/components/devtools_bridge/android/java/src/org/chromium/components/devtools_bridge/
H A DSocketTunnelBase.java16 import java.util.concurrent.locks.Lock;
86 final Lock lock = mDataChanneliReferenceLock.readLock();
101 final Lock lock = mDataChanneliReferenceLock.writeLock();
116 final Lock lock = mDataChanneliReferenceLock.writeLock();
149 final Lock lock = mDataChanneliReferenceLock.readLock();
184 final Lock lock = mDataChanneliReferenceLock.readLock();
/external/valgrind/main/helgrind/tests/
H A Dtc09_bad_unlock.stderr.exp12 Lock at 0x........ was first observed
32 Lock at 0x........ was first observed
59 Lock at 0x........ was first observed
70 Lock was previously acquired
97 Lock at 0x........ was first observed
/external/chromium_org/components/startup_metric_utils/
H A Dstartup_metric_utils.cc38 base::Lock* GetSubsystemStartupTimeHashLock() {
39 static base::Lock* slow_startup_time_hash_lock = new base::Lock;
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Donce_unittest.cc70 void BlockInit() { init_blocker_.Lock(); }
166 init_blocker_.Lock();
168 mutex_.Lock();
/external/lldb/source/API/
H A DSBInstruction.cpp82 api_locker.Lock (target_sp->GetAPIMutex());
101 api_locker.Lock (target_sp->GetAPIMutex());
120 api_locker.Lock (target_sp->GetAPIMutex());
/external/llvm/lib/Support/
H A DErrorHandling.cpp48 llvm::MutexGuard Lock(ErrorHandlerMutex);
55 llvm::MutexGuard Lock(ErrorHandlerMutex);
78 llvm::MutexGuard Lock(ErrorHandlerMutex);
/external/protobuf/src/google/protobuf/stubs/
H A Donce_unittest.cc70 void BlockInit() { init_blocker_.Lock(); }
166 init_blocker_.Lock();
168 mutex_.Lock();
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dcentral_freelist.cc143 lock_.Lock();
193 : held_(held), temp_(temp) { held_->Unlock(); temp_->Lock(); }
194 inline ~LockInverter() { temp_->Unlock(); held_->Lock(); }
246 lock_.Lock();
321 lock_.Lock();
349 lock_.Lock();
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dcentral_freelist.cc143 lock_.Lock();
194 : held_(held), temp_(temp) { held_->Unlock(); temp_->Lock(); }
195 inline ~LockInverter() { temp_->Unlock(); held_->Lock(); }
247 lock_.Lock();
324 lock_.Lock();
353 lock_.Lock();
H A Dmemory_region_map.cc191 Lock();
223 Lock();
255 // * At entry and exit of Lock() and Unlock(), the current thread
258 void MemoryRegionMap::Lock() { function in class:MemoryRegionMap
269 lock_.Lock();
315 Lock();
324 Lock();
466 Lock(); // recursively lock
475 Lock();
/external/clang/lib/StaticAnalyzer/Checkers/
H A DPthreadLockChecker.cpp70 void DestroyLock(CheckerContext &C, const CallExpr *CE, SVal Lock) const;
71 void InitLock(CheckerContext &C, const CallExpr *CE, SVal Lock) const;
144 "Lock checker"));
207 "Lock checker"));
231 BT_lor.reset(new BugType(this, "Lock order reversal", "Lock checker"));
253 SVal Lock) const {
255 const MemRegion *LockR = Lock.getAsRegion();
278 "Lock checker"));
288 SVal Lock) cons
[all...]
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpRequestBase.java36 import java.util.concurrent.locks.Lock;
67 private Lock abortLock;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DIndexBuffer9.cpp84 HRESULT result = mIndexBuffer->Lock(offset, size, &mapPtr, lockFlags);
142 result = mIndexBuffer->Lock(0, 1, &dummy, D3DLOCK_DISCARD);
/external/chromium_org/third_party/leveldatabase/src/util/
H A Denv_test.cc75 s->mu.Lock();
89 state.mu.Lock();
/external/chromium_org/tools/findit/
H A Dblame.py5 from threading import Lock namespace
56 self.blame_list_lock = Lock()
/external/chromium_org/v8/src/base/platform/
H A Dmutex.cc127 void Mutex::Lock() { function in class:v8::base::Mutex
162 void RecursiveMutex::Lock() { function in class:v8::base::RecursiveMutex
/external/chromium_org/v8/tools/testrunner/local/
H A Dperfdata.py55 self.lock = threading.Lock()
99 self.lock = threading.Lock()
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_thread_registry.h84 void Lock() { mtx_.Lock(); } function in class:__sanitizer::ThreadRegistry

Completed in 706 milliseconds

1234567891011>>