Searched defs:Lock (Results 76 - 100 of 111) sorted by last modified time

12345

/external/chromium_org/third_party/leveldatabase/port/
H A Dport_chromium.cc23 void Mutex::Lock() { function in class:leveldb::port::Mutex
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc265 void Mutex::Lock() { function in class:google::protobuf::Mutex
301 void Mutex::Lock() { function in class:google::protobuf::Mutex
/external/chromium_org/third_party/re2/util/
H A Dmutex.h62 inline void Lock(); // Block if needed until free then acquire exclusively
63 inline void Unlock(); // Release a lock acquired via Lock()
64 inline bool TryLock(); // If free, Lock() and return true, else return false
66 // be implemented as synonyms to Lock() and Unlock(). So you can use
71 inline void WriterLock() { Lock(); } // Acquire an exclusive lock
101 void Mutex::Lock() { assert(--mutex_ == -1); } function in class:re2::Mutex
103 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
114 void Mutex::Lock() { SAFE_PTHREAD(pthread_rwlock_wrlock(&mutex_)); } function in class:re2::Mutex
129 void Mutex::Lock() { SAFE_PTHREAD(pthread_mutex_lock(&mutex_)); } function in class:re2::Mutex
132 void Mutex::ReaderLock() { Lock(); } // w
140 void Mutex::Lock() { EnterCriticalSection(&mutex_); } function in class:re2::Mutex
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dsimple_mutex.h79 // state between a call to Lock() and a call to Unlock() (that would
80 // require a global constructor in one translation unit to call Lock()
164 inline void Lock(); // Block if needed until free then acquire exclusively
165 inline void Unlock(); // Release a lock acquired via Lock()
166 inline bool TryLock(); // If free, Lock() and return true, else return false
168 // be implemented as synonyms to Lock() and Unlock(). So you can use
173 inline void WriterLock() { Lock(); } // Acquire an exclusive lock
210 void Mutex::Lock() { assert(--mutex_ == -1); } function in class:MUTEX_NAMESPACE::Mutex
212 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
227 void Mutex::Lock() { i function in class:MUTEX_NAMESPACE::Mutex
249 void Mutex::Lock() { SAFE_PTHREAD(pthread_rwlock_wrlock); } function in class:MUTEX_NAMESPACE::Mutex
272 void Mutex::Lock() { SAFE_PTHREAD(pthread_mutex_lock); } function in class:MUTEX_NAMESPACE::Mutex
[all...]
H A Dspinlock.h72 inline void Lock() /*EXCLUSIVE_LOCK_FUNCTION()*/ { function in class:SpinLock
141 l->Lock();
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmemory_region_map.cc199 Lock();
242 Lock();
292 // * At entry and exit of Lock() and Unlock(), the current thread
295 void MemoryRegionMap::Lock() { function in class:MemoryRegionMap
306 lock_.Lock();
352 Lock();
361 Lock();
600 Lock(); // recursively lock
619 Lock();
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dsimple_mutex.h79 // state between a call to Lock() and a call to Unlock() (that would
80 // require a global constructor in one translation unit to call Lock()
164 inline void Lock(); // Block if needed until free then acquire exclusively
165 inline void Unlock(); // Release a lock acquired via Lock()
166 inline bool TryLock(); // If free, Lock() and return true, else return false
168 // be implemented as synonyms to Lock() and Unlock(). So you can use
173 inline void WriterLock() { Lock(); } // Acquire an exclusive lock
210 void Mutex::Lock() { assert(--mutex_ == -1); } function in class:MUTEX_NAMESPACE::Mutex
212 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
227 void Mutex::Lock() { i function in class:MUTEX_NAMESPACE::Mutex
249 void Mutex::Lock() { SAFE_PTHREAD(pthread_rwlock_wrlock); } function in class:MUTEX_NAMESPACE::Mutex
272 void Mutex::Lock() { SAFE_PTHREAD(pthread_mutex_lock); } function in class:MUTEX_NAMESPACE::Mutex
[all...]
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/
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/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dsimple_lock.h29 void Lock() const { pthread_mutex_lock(&lock_); } function in class:sdk_util::SimpleLock
/external/chromium_org/net/disk_cache/blockfile/
H A Dfile_lock.cc33 void FileLock::Lock() { function in class:disk_cache::FileLock
/external/chromium_org/ppapi/proxy/
H A Dproxy_completion_callback_factory.h57 class Lock { class in class:ppapi::proxy::ProxyNonThreadSafeThreadTraits
59 Lock() {} function in class:ppapi::proxy::ProxyNonThreadSafeThreadTraits::Lock
60 ~Lock() {}
69 explicit AutoLock(Lock&) {}
/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/ppapi/utility/threading/
H A Dlock.cc11 Lock::Lock() { function in class:pp::Lock
17 Lock::~Lock() {
21 void Lock::Acquire() {
25 void Lock::Release() {
31 Lock::Lock() {
35 Lock::~Lock() {
[all...]
H A Dlock.h17 class Lock { class in namespace:pp
20 Lock();
23 ~Lock();
46 Lock(const Lock&);
47 Lock& operator=(const Lock&);
61 /// pp::Lock lock_;
66 explicit AutoLock(Lock& lock) : lock_(lock) {
75 Lock
[all...]
/external/chromium_org/remoting/base/
H A Dcompound_buffer.cc136 void CompoundBuffer::Lock() { function in class:remoting::CompoundBuffer
/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/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/mojo/public/cpp/utility/lib/
H A Dmutex.cc31 void Mutex::Lock() { function in class:mojo::Mutex
/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/content/child/npapi/
H A Dwebplugin_ime_win.cc24 base::LazyInstance<base::Lock>::Leaky
179 void WebPluginIMEWin::Lock() { function in class:content::WebPluginIMEWin
/external/chromium_org/chrome/browser/signin/
H A Dscreenlock_bridge.cc139 void ScreenlockBridge::Lock(Profile* profile) { function in class:ScreenlockBridge
/external/chromium_org/chrome/browser/importer/
H A Dfirefox_profile_lock_posix.cc63 void FirefoxProfileLock::Lock() { function in class:FirefoxProfileLock
H A Dfirefox_profile_lock_win.cc58 void FirefoxProfileLock::Lock() { function in class:FirefoxProfileLock
/external/chromium_org/base/files/
H A Dfile_posix.cc81 lock.l_len = 0; // Lock entire file.
445 File::Error File::Lock() { function in class:base::File

Completed in 395 milliseconds

12345