Searched defs:Lock (Results 1 - 25 of 106) sorted by relevance

12345

/external/sfntly/cpp/src/sfntly/port/
H A Dlock.cc23 Lock::Lock() { function in class:sfntly::Lock
29 Lock::~Lock() {
33 bool Lock::Try() {
40 void Lock::Acquire() {
44 void Lock::Unlock() {
50 Lock::Lock() {
54 Lock
[all...]
H A Dlock.h37 class Lock { class in namespace:sfntly
39 Lock();
40 ~Lock();
50 // a successful call to Try, or a call to Lock.
55 NO_COPY_AND_ASSIGN(Lock);
58 // A helper class that acquires the given Lock while the AutoLock is in scope.
61 explicit AutoLock(Lock& lock) : lock_(lock) {
70 Lock& lock_;
/external/syslinux/gnu-efi/gnu-efi-3.0/lib/
H A Dlock.c25 IN OUT FLOCK *Lock,
43 Lock - The FLOCK structure to initialize
50 An initialized F Lock structure.
54 Lock->Tpl = Priority;
55 Lock->OwnerTpl = 0;
56 Lock->Lock = 0;
62 IN FLOCK *Lock
73 Lock - The lock to acquire
77 Lock owne
24 InitializeLock( IN OUT FLOCK *Lock, IN EFI_TPL Priority ) argument
[all...]
/external/clang/test/SemaCXX/
H A Doperator-arrow-temporary.cpp8 template<int x> struct Lock { struct
9 ~Lock() { int a[x]; } // expected-error {{declared as an array with a negative size}}
14 Lock<-1> operator->();
17 // Make sure we try to instantiate the destructor for Lock here
/external/libchrome/base/synchronization/
H A Dlock.cc5 // This file is used for debugging assertion support. The Lock class
15 Lock::Lock() : lock_() { function in class:base::Lock
18 Lock::~Lock() {
22 void Lock::AssertAcquired() const {
26 void Lock::CheckHeldAndUnmark() {
31 void Lock::CheckUnheldAndMark() {
H A Dlock_impl_posix.cc44 void LockImpl::Lock() { function in class:base::internal::LockImpl
H A Dlock.h20 class BASE_EXPORT Lock { class in namespace:base
24 Lock() : lock_() {} function in class:base::Lock
25 ~Lock() {}
26 void Acquire() { lock_.Lock(); }
38 Lock();
39 ~Lock();
45 lock_.Lock();
89 DISALLOW_COPY_AND_ASSIGN(Lock);
92 // A helper class that acquires the given Lock while the AutoLock is in scope.
97 explicit AutoLock(Lock
[all...]
/external/compiler-rt/test/tsan/
H A Dmutex_annotations.cc21 void Lock() { function in class:Mutex
36 m.Lock();
40 m.Lock();
/external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
H A Ddestructor.pass.cpp25 typedef std::unique_lock<std::mutex> Lock; typedef
32 Lock lk(m);
40 Lock lk(m);
51 Lock lk(m);
/external/llvm/include/llvm/
H A DPassRegistry.h41 mutable sys::SmartRWMutex<true> Lock; member in class:llvm::PassRegistry
/external/drm_hwcomposer/
H A Dworker.h32 void Lock() { function in class:android::Worker
/external/llvm/unittests/ExecutionEngine/Orc/
H A DRPCUtilsTest.cpp22 std::mutex &getLock() { return Lock; }
25 std::mutex Lock; member in class:Queue
39 // Lock the channel and read what we can.
40 std::lock_guard<std::mutex> Lock(InQueue.getLock());
51 std::lock_guard<std::mutex> Lock(OutQueue.getLock());
/external/webrtc/webrtc/modules/desktop_capture/mac/
H A Ddesktop_configuration_monitor.cc44 void DesktopConfigurationMonitor::Lock() { function in class:webrtc::DesktopConfigurationMonitor
/external/libxml2/python/tests/
H A Dthread2.py7 from threading import Thread, Lock namespace
19 self.lock = Lock()
/external/syslinux/efi32/include/efi/
H A Defilink.h173 UINTN Lock; member in struct:_FLOCK
/external/syslinux/efi64/include/efi/
H A Defilink.h173 UINTN Lock; member in struct:_FLOCK
/external/syslinux/gnu-efi/gnu-efi-3.0/inc/
H A Defilink.h173 UINTN Lock; member in struct:_FLOCK
/external/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/v8/tools/clang/rewrite_to_chrome_style/tests/
H A Dfunctions-expected.cc39 void Lock() {} function in namespace:blink
/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.h48 void Lock();
69 typedef GenericScopedLock<Mutex> Lock; typedef in namespace:__tsan
75 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/python/cpython2/Demo/metaclasses/
H A DSynch.py13 class Lock: class in inherits:
122 lock = Lock()
162 self.__lock__ = Lock()
/external/python/cpython2/Demo/pdist/
H A Dcvslock.py110 class Lock: class in inherits:
187 class ReadLock(Lock):
190 Lock.__init__(self, repository, delay)
204 class WriteLock(Lock):
207 Lock.__init__(self, repository, delay)

Completed in 2007 milliseconds

12345