Searched defs:Lock (Results 26 - 50 of 111) sorted by relevance

12345

/external/chromium_org/ppapi/utility/
H A Dcompletion_callback_factory_thread_traits.h64 Lock lock_;
68 typedef pp::Lock Lock; typedef in class:pp::ThreadSafeThreadTraits
124 class Lock { class in class:pp::NonThreadSafeThreadTraits
126 Lock() { function in class:pp::NonThreadSafeThreadTraits::Lock
133 ~Lock() {
164 explicit AutoLock(Lock& lock) : lock_(lock) {
172 Lock& lock_;
/external/chromium_org/base/memory/
H A Ddiscardable_memory_malloc.cc19 return Lock() != DISCARDABLE_MEMORY_LOCK_STATUS_FAILED;
22 DiscardableMemoryLockStatus DiscardableMemoryMalloc::Lock() { function in class:base::internal::DiscardableMemoryMalloc
H A Ddiscardable_memory_ashmem.cc31 return Lock() != DISCARDABLE_MEMORY_LOCK_STATUS_FAILED;
34 DiscardableMemoryLockStatus DiscardableMemoryAshmem::Lock() { function in class:base::internal::DiscardableMemoryAshmem
60 return ashmem_chunk_->Lock();
H A Ddiscardable_memory_emulated.cc62 return Lock() != DISCARDABLE_MEMORY_LOCK_STATUS_FAILED;
65 DiscardableMemoryLockStatus DiscardableMemoryEmulated::Lock() { function in class:base::internal::DiscardableMemoryEmulated
/external/chromium_org/mojo/public/cpp/utility/
H A Dmutex.h32 void Lock() { pthread_mutex_lock(&mutex_); } function in class:mojo::Mutex
41 void Lock();
56 explicit MutexLock(Mutex* mutex) : mutex_(mutex) { mutex_->Lock(); }
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_globals.h24 void Lock() { pthread_mutex_lock(&lock_); } function in class:crazy::Globals
46 ScopedGlobalLock() { Globals::Get()->Lock(); }
/external/chromium_org/third_party/webrtc/modules/desktop_capture/mac/
H A Ddesktop_configuration_monitor.cc44 void DesktopConfigurationMonitor::Lock() { function in class:webrtc::DesktopConfigurationMonitor
/external/llvm/include/llvm/
H A DPassRegistry.h42 mutable sys::SmartRWMutex<true> Lock; member in class:llvm::PassRegistry
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
H A DSDLOSXCAGuard.h84 Lock() will return true if and only if the guard is locked on that call.
99 int (*Lock)(struct S_SDLOSXCAGuard *cag); member in struct:S_SDLOSXCAGuard
/external/chromium_org/sync/syncable/
H A Dsyncable_base_transaction.cc22 void BaseTransaction::Lock() { function in class:syncer::syncable::BaseTransaction
/external/chromium_org/third_party/leveldatabase/src/port/
H A Dport_posix.cc26 void Mutex::Lock() { PthreadCall("lock", pthread_mutex_lock(&mu_)); } function in class:leveldb::port::Mutex
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dspinlock.h72 inline void Lock() /*EXCLUSIVE_LOCK_FUNCTION()*/ { function in class:SpinLock
141 l->Lock();
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dspinlock.h72 inline void Lock() /*EXCLUSIVE_LOCK_FUNCTION()*/ { function in class:SpinLock
141 l->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/lldb/tools/debugserver/source/
H A DPThreadMutex.h43 void Lock();
50 Lock();
56 Lock();
62 Lock();
65 void Lock()
89 Lock();
134 int Lock() function in class:PThreadMutex
/external/chromium_org/third_party/leveldatabase/port/
H A Dport_chromium.cc23 void Mutex::Lock() { function in class:leveldb::port::Mutex
/external/chromium_org/tools/findit/
H A Dfindit_for_crash.py6 from threading import Lock namespace
273 results_lock = Lock()
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_mutex_test.cc34 Lock l(mtx_);
62 typedef GenericScopedLock<MutexType> Lock; typedef in class:__sanitizer::TestData
/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/rtl/
H A Dtsan_mutex.h45 void Lock();
66 typedef GenericScopedLock<Mutex> Lock; typedef in namespace:__tsan
72 void Lock(MutexType t);
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mutex_test.cc32 Lock l(mtx_);
57 typedef GenericScopedLock<MutexType> Lock; typedef in class:__tsan::TestData
/external/lldb/include/lldb/Host/
H A DMutex.h103 Lock (Mutex &mutex);
106 Lock (Mutex *mutex) function in class:lldb_private::Mutex::Locker
109 Lock(*mutex);
187 /// Lock the mutex.
200 Lock();
297 Lock ();
/external/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.h142 void Lock(InstructionLLVMC *inst, function in class:DisassemblerLLVMC
145 m_mutex.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/ceres-solver/internal/ceres/
H A Dmutex.h80 // state between a call to Lock() and a call to Unlock() (that would
81 // require a global constructor in one translation unit to call Lock()
158 inline void Lock(); // Block if needed until free then acquire exclusively
159 inline void Unlock(); // Release a lock acquired via Lock()
161 inline bool TryLock(); // If free, Lock() and return true, else return false
164 // be implemented as synonyms to Lock() and Unlock(). So you can use
169 inline void WriterLock() { Lock(); } // Acquire an exclusive lock
206 void Mutex::Lock() { assert(--mutex_ == -1); } function in class:ceres::internal::Mutex
209 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
218 void Mutex::Lock() { i function in class:ceres::internal::Mutex
238 void Mutex::Lock() { CERES_SAFE_PTHREAD(pthread_rwlock_wrlock); } function in class:ceres::internal::Mutex
260 void Mutex::Lock() { CERES_SAFE_PTHREAD(pthread_mutex_lock); } function in class:ceres::internal::Mutex
[all...]

Completed in 655 milliseconds

12345