Searched refs:Unlock (Results 1 - 25 of 259) sorted by relevance

1234567891011

/external/chromium/net/disk_cache/
H A Dfile_lock.h26 // It is important to perform Lock() and Unlock() operations in the right order,
34 Unlock();
38 virtual void Unlock();
H A Dfile_lock.cc21 void FileLock::Unlock() { function in class:disk_cache::FileLock
/external/chromium_org/net/disk_cache/
H A Dfile_lock.cc30 Unlock();
40 void FileLock::Unlock() { function in class:disk_cache::FileLock
H A Dfile_lock.h26 // It is important to perform Lock() and Unlock() operations in the right order,
37 virtual void Unlock();
/external/valgrind/unittest/
H A Ddeadlock_unittest.cc72 mu[idx].Unlock();
82 mu[idx].Unlock();
93 mu[idx].Unlock();
149 mu.Unlock();
167 mu2.Unlock();
168 mu1.Unlock();
174 mu1.Unlock();
175 mu2.Unlock();
191 mu2.Unlock(); mu1.Unlock();
[all...]
/external/clang/test/PCH/
H A Dthread-safety-attrs.cpp37 void Unlock() __attribute__((unlock_function));
120 sls_mw.mu.Unlock();
126 sls_mu.Unlock();
132 sls_mu.Unlock();
138 sls_mu2.Unlock();
144 sls_mu.Unlock();
150 sls_mu.Unlock();
156 sls_mu2.Unlock();
157 sls_mu.Unlock();
163 sls_mu.Unlock();
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DTCSpinLock.h56 inline void Unlock() { function in struct:TCMalloc_SpinLock
63 Unlock();
78 inline ~TCMalloc_SpinLockHolder() { lock_->Unlock(); }
/external/chromium_org/chrome/common/
H A Dmulti_process_lock.h30 virtual void Unlock() = 0;
/external/chromium_org/sync/syncable/
H A Dsyncable_read_transaction.cc18 Unlock();
/external/chromium_org/webkit/child/
H A Dweb_discardable_memory_impl.cc25 discardable_->Unlock();
38 discardable_->Unlock();
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_mutex.cc28 t.Unlock(m);
31 t.Unlock(m);
35 t.Unlock(m);
46 t.Unlock(m);
49 t.Unlock(m);
53 t.Unlock(m);
64 t.Unlock(m);
67 t.Unlock(m);
71 t.Unlock(m);
81 t.Unlock(
[all...]
/external/chromium_org/base/memory/
H A Ddiscardable_memory_unittest.cc11 // Test Lock() and Unlock() functionalities.
22 memory.Unlock();
29 memory.Unlock();
52 memory.Unlock();
/external/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp34 void Unlock() __attribute__((unlock_function));
118 sls_mw.mu.Unlock();
124 sls_mu.Unlock();
130 sls_mu.Unlock();
136 sls_mu2.Unlock();
142 sls_mu.Unlock();
148 sls_mu.Unlock();
154 sls_mu2.Unlock();
155 sls_mu.Unlock();
161 sls_mu.Unlock();
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Dlock.cc44 void Lock::Unlock() { function in class:sfntly::Lock
66 void Lock::Unlock() {
H A Dlock.h51 void Unlock();
66 lock_.Unlock();
/external/sfntly/cpp/src/test/
H A Dlock_test.cc25 // Basic test to make sure that Acquire()/Unlock()/Try() don't crash
35 lock_->Unlock();
41 lock_->Unlock();
47 lock_->Unlock();
72 lock.Unlock();
78 lock.Unlock();
84 lock.Unlock();
91 lock.Unlock();
111 lock_->Unlock();
141 lock.Unlock();
[all...]
/external/chromium/base/synchronization/
H A Dlock_impl_win.cc31 void LockImpl::Unlock() { function in class:base::internal::LockImpl
/external/chromium/chrome/browser/importer/
H A Dfirefox_profile_lock_win.cc66 void FirefoxProfileLock::Unlock() { function in class:FirefoxProfileLock
/external/chromium/chrome/common/
H A Dmulti_process_lock.h36 virtual void Unlock() = 0;
/external/chromium_org/base/synchronization/
H A Dlock_impl_win.cc31 void LockImpl::Unlock() { function in class:base::internal::LockImpl
/external/chromium_org/chrome/browser/importer/
H A Dfirefox_profile_lock_win.cc66 void FirefoxProfileLock::Unlock() { function in class:FirefoxProfileLock
/external/chromium_org/v8/test/cctest/
H A Dtest-lock.cc45 CHECK_EQ(0, mutex->Unlock()); // can unlock with the right token
53 CHECK_EQ(0, mutex->Unlock());
61 CHECK_EQ(0, mutex->Unlock());
63 CHECK_EQ(0, mutex->Unlock());
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_yuvfuncs.h34 void (*Unlock)(_THIS, SDL_Overlay *overlay); member in struct:private_yuvhwfuncs
/external/v8/test/cctest/
H A Dtest-lock.cc20 CHECK_EQ(0, mutex->Unlock()); // can unlock with the right token
28 CHECK_EQ(0, mutex->Unlock());
36 CHECK_EQ(0, mutex->Unlock());
38 CHECK_EQ(0, mutex->Unlock());
/external/chromium_org/third_party/re2/util/
H A Dmutex.h63 inline void Unlock(); // Release a lock acquired via Lock()
66 // be implemented as synonyms to Lock() and Unlock(). So you can use
72 inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock()
102 void Mutex::Unlock() { assert(mutex_++ == -1); } function in class:re2::Mutex
115 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock(&mutex_)); } function in class:re2::Mutex
130 void Mutex::Unlock() { SAFE_PTHREAD(pthread_mutex_unlock(&mutex_)); } function in class:re2::Mutex
133 void Mutex::ReaderUnlock() { Unlock(); }
141 void Mutex::Unlock() { LeaveCriticalSection(&mutex_); } function in class:re2::Mutex
144 void Mutex::ReaderUnlock() { Unlock(); }
156 ~MutexLock() { mu_->Unlock(); }
[all...]

Completed in 614 milliseconds

1234567891011