Searched defs:Lock (Results 1 - 25 of 111) sorted by last modified time

12345

/external/valgrind/main/drd/tests/
H A Dannotate_smart_pointer.cpp66 void Lock() function in class:Mutex
127 void Lock() function in class:Mutex
279 m_mutex.Lock();
287 m_mutex.Lock();
H A Dtsan_thread_wrappers_pthread.h120 void Lock() { function in class:SpinLock
143 void Lock() { function in class:SpinLock
202 void Lock() { CHECK(0 == pthread_mutex_lock(&mu_));} function in class:Mutex
210 void ReaderLock() { Lock(); }
214 void LockWhen(Condition cond) { Lock(); WaitLoop(cond); }
215 void ReaderLockWhen(Condition cond) { Lock(); WaitLoop(cond); }
219 { Lock(); return WaitLoopWithTimeout(cond, millis); }
221 { Lock(); return WaitLoopWithTimeout(cond, millis); }
265 mu_->Lock();
303 void Lock() { CHEC function in class:RWLock
[all...]
/external/valgrind/main/helgrind/
H A Dhg_lock_n_thread.h89 WordSetID locksetA; /* WordSet of Lock* currently held by thread */
106 contains Lock*s. Solution is to copy any Lock which is to be
112 /* Lock kinds. */
157 Lock; typedef in typeref:struct:_Lock
159 #define Lock_INVALID ((Lock*)1UL)
166 Bool HG_(is_sane_LockP) ( Lock* lock );
167 Bool HG_(is_sane_LockN) ( Lock* lock );
168 Bool HG_(is_sane_LockNorP) ( Lock* lock );
/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/regex-re2/util/
H A Dmutex.h58 inline void Lock(); // Block if needed until free then acquire exclusively
59 inline void Unlock(); // Release a lock acquired via Lock()
60 inline bool TryLock(); // If free, Lock() and return true, else return false
62 // be implemented as synonyms to Lock() and Unlock(). So you can use
67 inline void WriterLock() { Lock(); } // Acquire an exclusive lock
97 void Mutex::Lock() { assert(--mutex_ == -1); } function in class:re2::Mutex
99 bool Mutex::TryLock() { if (mutex_) return false; Lock(); return true; }
110 void Mutex::Lock() { SAFE_PTHREAD(pthread_rwlock_wrlock(&mutex_)); } function in class:re2::Mutex
125 void Mutex::Lock() { SAFE_PTHREAD(pthread_mutex_lock(&mutex_)); } function in class:re2::Mutex
128 void Mutex::ReaderLock() { Lock(); } // w
136 void Mutex::Lock() { EnterCriticalSection(&mutex_); } function in class:re2::Mutex
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dsqlite-jdbc-3.7.2.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org. ...
/external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
H A DCDPlayer.c79 void Lock () function
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/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
H A DSDL_main.cpp83 void Lock();
120 void CEventQueue::Lock() function in class:CEventQueue
/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/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
H A DSDL_epocvideo.cpp71 void Lock() {LockHeap();} function in class:CLockable
74 #define LockHeap(x) CLockable::Lockable(x)->Lock()
441 LockHeap(Private->EPOC_Bitmap); // Lock bitmap heap
635 LockHeap(Private->EPOC_Bitmap); // Lock bitmap heap
763 lock.Begin(TPoint(0,0)); // Lock bitmap heap
/external/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc261 void Mutex::Lock() { function in class:google::protobuf::Mutex
297 void Mutex::Lock() { function in class:google::protobuf::Mutex
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/pdfium/core/include/fxcrt/
H A Dfx_memory.h28 void* (*Lock)(struct _FXMEM_SystemMgr* pMgr, void* handle); member in struct:_FXMEM_SystemMgr
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h1207 void Lock() { function in class:testing::internal::MutexBase
1268 : mutex_(mutex) { mutex_->Lock(); }
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h1217 void Lock() { function in class:testing::internal::MutexBase
1278 : mutex_(mutex) { mutex_->Lock(); }
/external/lzma/CPP/Windows/
H A DSynchronization.h47 WRes Lock() { return Event_Wait(&_object); } function in class:NWindows::NSynchronization::CBaseEvent
90 WRes Lock(DWORD timeoutInterval = INFINITE) function in class:NWindows::NSynchronization::CObject
121 CMutexLock(CMutex &object): _object(&object) { _object->Lock(); }
140 WRes Lock() { return Semaphore_Wait(&_object); } function in class:NWindows::NSynchronization::CSemaphore
/external/llvm/include/llvm/
H A DPassRegistry.h42 mutable sys::SmartRWMutex<true> Lock; member in class:llvm::PassRegistry
/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/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp99 mutable sys::Mutex Lock; member in class:__anon25846::JitPool
102 MutexGuard guard(Lock);
106 MutexGuard guard(Lock);
110 MutexGuard guard(Lock);
H A DJITEmitter.cpp229 /// Guarded by Lock.
233 mutable sys::Mutex Lock; member in class:__anon25847::StubToResolverMapTy
238 MutexGuard guard(Lock);
243 MutexGuard guard(Lock);
248 MutexGuard guard(Lock);
261 MutexGuard guard(Lock);
/external/llvm/lib/Target/NVPTX/
H A DNVPTXUtilities.cpp36 static sys::Mutex Lock; variable
39 MutexGuard Guard(Lock);
44 MutexGuard Guard(Lock);
70 MutexGuard Guard(Lock);
103 MutexGuard Guard(Lock);
117 MutexGuard Guard(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 ();

Completed in 668 milliseconds

12345