Searched refs:Lock (Results 51 - 75 of 786) sorted by relevance

1234567891011>>

/external/chromium_org/net/disk_cache/blockfile/
H A Dfile_lock.cc33 void FileLock::Lock() { function in class:disk_cache::FileLock
H A Dfile_lock.h26 // It is important to perform Lock() and Unlock() operations in the right order,
36 virtual void Lock();
/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/remoting/base/
H A Drunning_average.h36 base::Lock lock_;
/external/chromium_org/sync/internal_api/public/base/
H A Dcancelation_signal.h61 base::Lock signal_lock_;
/external/chromium_org/sync/syncable/
H A Dsyncable_model_neutral_write_transaction.cc19 Lock();
/external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
H A Dmutex.h13 typedef base::Lock Mutex;
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_mutex.cc27 t.Lock(m);
33 t.Lock(m);
45 t.Lock(m);
51 t.Lock(m);
63 t.Lock(m);
69 t.Lock(m);
79 t.Lock(m);
102 t1.Lock(m);
105 t2.Lock(m);
118 t1.Lock(
[all...]
/external/lldb/tools/debugserver/source/
H A DPThreadMutex.cpp31 Lock();
41 Lock();
51 Lock();
62 PThreadMutex::Locker::Lock() function in class:PThreadMutex::Locker
/external/lzma/CPP/7zip/Common/
H A DVirtThread.h19 void WaitFinish() { FinishedEvent.Lock(); }
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuvfuncs.h33 int (*Lock)(_THIS, SDL_Overlay *overlay); member in struct:private_yuvhwfuncs
/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...]
/external/chromium_org/net/base/
H A Daddress_tracker_linux.h76 base::Lock& lock);
81 base::Lock& lock_;
132 mutable base::Lock address_map_lock_;
136 mutable base::Lock online_links_lock_;
139 base::Lock is_offline_lock_;
/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/chromium_org/base/memory/
H A Ddiscardable_memory_ashmem_allocator.h28 bool Lock();
83 mutable Lock lock_;
H A Ddiscardable_memory_malloc.h21 virtual DiscardableMemoryLockStatus Lock() OVERRIDE;
/external/llvm/lib/IR/
H A DPassRegistry.cpp43 sys::SmartScopedReader<true> Guard(Lock);
49 sys::SmartScopedReader<true> Guard(Lock);
59 sys::SmartScopedWriter<true> Guard(Lock);
75 sys::SmartScopedWriter<true> Guard(Lock);
85 sys::SmartScopedReader<true> Guard(Lock);
111 sys::SmartScopedWriter<true> Guard(Lock);
137 sys::SmartScopedWriter<true> Guard(Lock);
142 sys::SmartScopedWriter<true> Guard(Lock);
/external/llvm/lib/Support/
H A DManagedStatic.cpp36 MutexGuard Lock(getManagedStaticMutex());
86 MutexGuard Lock(getManagedStaticMutex());
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_syswm.cc55 SDL_Win->Lock();
69 SDL_Win->Lock();
/external/smack/src/com/kenai/jbosh/
H A DRequestIDSequence.java21 import java.util.concurrent.locks.Lock;
65 private static final Lock LOCK = new ReentrantLock();
/external/chromium_org/base/ios/
H A Dscoped_critical_action.h54 Lock background_task_id_lock_;
/external/chromium_org/base/power_monitor/
H A Dpower_monitor_source.h58 Lock battery_lock_;
/external/chromium_org/base/synchronization/
H A Dlock_impl.h23 // used for the Lock class. Most users should not use LockImpl directly, but
24 // should instead use Lock.
41 void Lock();
44 // a successful call to Try, or a call to Lock.
/external/chromium_org/chrome/browser/renderer_host/pepper/
H A Dmonitor_finder_mac.h39 base::Lock mutex_; // Protects the two members below.
/external/chromium_org/native_client_sdk/src/libraries/sdk_util/
H A Dauto_lock.h17 ::sdk_util::AutoLock Lock##__LINE__(lock);

Completed in 1484 milliseconds

1234567891011>>