HomeSort by relevance Sort by last modified time
    Searched defs:Unlock (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/chromium/chrome/browser/importer/
firefox_profile_lock_win.cc 66 void FirefoxProfileLock::Unlock() {
firefox_profile_lock_posix.cc 76 void FirefoxProfileLock::Unlock() {
  /external/chromium/net/disk_cache/
file_lock.cc 21 void FileLock::Unlock() {
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_yuvfuncs.h 34 void (*Unlock)(_THIS, SDL_Overlay *overlay);
  /external/chromium/base/synchronization/
lock_impl_posix.cc 48 void LockImpl::Unlock() {
lock_impl_win.cc 31 void LockImpl::Unlock() {
  /external/chromium/chrome/common/
multi_process_lock_mac.cc 17 Unlock();
39 virtual void Unlock() {
multi_process_lock_win.cc 17 Unlock();
43 virtual void Unlock() {
multi_process_lock_linux.cc 22 Unlock();
90 virtual void Unlock() {
  /frameworks/ex/variablespeed/jni/
no_synchronization.h 34 void Unlock() {}
  /bionic/libc/bionic/
pthread_accessor.h 36 Unlock();
39 void Unlock() {
pthread_key.cpp 101 Unlock();
158 // and/or pthread_key_delete, we need to temporarily unlock
160 Unlock();
183 void Unlock() {
241 // For performance reasons, we do not lock/unlock the global TLS map
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/macosx/
SDLOSXCAGuard.h 100 void (*Unlock)(struct S_SDLOSXCAGuard *cag);
  /external/chromium/base/
shared_memory_win.cc 219 void SharedMemory::Unlock() {
shared_memory_posix.cc 245 void SharedMemory::Unlock() {
  /external/chromium/chrome/browser/
process_singleton.h 110 void Unlock() {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mutex.h 39 void Unlock() {
75 void Unlock();
91 mu_->Unlock();
sanitizer_mac.cc 323 void BlockingMutex::Unlock() {
  /external/compiler-rt/lib/tsan/benchmarks/
vts_many_threads_bench.cc 36 void Unlock() { pthread_mutex_unlock(&m_); }
65 mutexes[(offset + i) % kNumMutexes].Unlock();
  /external/webkit/Source/JavaScriptCore/wtf/
TCSpinLock.h 94 inline void Unlock() {
215 inline void Unlock() {
253 inline void Unlock() {
260 Unlock();
277 inline ~TCMalloc_SpinLockHolder() { lock_->Unlock(); }
  /external/ceres-solver/internal/ceres/
mutex.h 73 // look at the bool, and not try to lock/unlock until the bool makes
80 // state between a call to Lock() and a call to Unlock() (that would
83 // Unlock() later, which is pretty perverse).
153 inline void Unlock(); // Release a lock acquired via Lock()
158 // be implemented as synonyms to Lock() and Unlock(). So you can use
164 inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock()
201 void Mutex::Unlock() { assert(mutex_++ == -1); }
213 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); }
219 void Mutex::ReaderUnlock() { Unlock(); }
233 void Mutex::Unlock() { CERES_SAFE_PTHREAD(pthread_rwlock_unlock);
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
mutex.h 77 // look at the bool, and not try to lock/unlock until the bool makes
84 // state between a call to Lock() and a call to Unlock() (that would
87 // Unlock() later, which is pretty perverse).
147 inline void Unlock(); // Release a lock acquired via Lock()
152 // be implemented as synonyms to Lock() and Unlock(). So you can use
158 inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock()
193 void Mutex::Unlock() { assert(mutex_++ == -1); }
205 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); }
211 void Mutex::ReaderUnlock() { Unlock(); }
226 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock);
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutex.cc 158 void DeadlockDetector::Unlock(MutexType t) {
233 void Mutex::Unlock() {
238 cur_thread()->deadlock_detector.Unlock(type_);
266 cur_thread()->deadlock_detector.Unlock(type_);
  /external/open-vcdiff/gflags/src/
mutex.h 80 // look at the bool, and not try to lock/unlock until the bool makes
87 // state between a call to Lock() and a call to Unlock() (that would
90 // Unlock() later, which is pretty perverse).
173 inline void Unlock(); // Release a lock acquired via Lock()
178 // be implemented as synonyms to Lock() and Unlock(). So you can use
184 inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock()
221 void Mutex::Unlock() { assert(mutex_++ == -1); }
240 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); }
246 void Mutex::ReaderUnlock() { Unlock(); }
264 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock);
    [all...]
  /external/regex-re2/util/
mutex.h 59 inline void Unlock(); // Release a lock acquired via Lock()
62 // be implemented as synonyms to Lock() and Unlock(). So you can use
68 inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock()
98 void Mutex::Unlock() { assert(mutex_++ == -1); }
111 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock(&mutex_)); }
126 void Mutex::Unlock() { SAFE_PTHREAD(pthread_mutex_unlock(&mutex_)); }
129 void Mutex::ReaderUnlock() { Unlock(); }
137 void Mutex::Unlock() { LeaveCriticalSection(&mutex_); }
140 void Mutex::ReaderUnlock() { Unlock(); }
152 ~MutexLock() { mu_->Unlock(); }
    [all...]

Completed in 500 milliseconds

1 2 3