Searched defs:Unlock (Results 26 - 50 of 82) sorted by relevance

1234

/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dspinlock.h97 inline void Unlock() /*UNLOCK_FUNCTION()*/ { function in class:SpinLock
145 inline ~SpinLockHolder() /*UNLOCK_FUNCTION()*/ { lock_->Unlock(); }
H A Dsimple_mutex.h79 // state between a call to Lock() and a call to Unlock() (that would
82 // Unlock() later, which is pretty perverse).
165 inline void Unlock(); // Release a lock acquired via Lock()
168 // be implemented as synonyms to Lock() and Unlock(). So you can use
174 inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock()
211 void Mutex::Unlock() { assert(mutex_++ == -1); } function in class:MUTEX_NAMESPACE::Mutex
228 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); } function in class:MUTEX_NAMESPACE::Mutex
232 void Mutex::ReaderUnlock() { Unlock(); }
250 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock); } function in class:MUTEX_NAMESPACE::Mutex
273 void Mutex::Unlock() { SAFE_PTHREA function in class:MUTEX_NAMESPACE::Mutex
[all...]
/external/chromium_org/v8/src/base/platform/
H A Dmutex.cc133 void Mutex::Unlock() { function in class:v8::base::Mutex
171 void RecursiveMutex::Unlock() { function in class:v8::base::RecursiveMutex
/external/lldb/tools/debugserver/source/
H A DPThreadMutex.h44 void Unlock();
71 void Unlock()
79 Unlock();
87 Unlock();
123 err = Unlock();
139 int Unlock() function in class:PThreadMutex
/external/chromium_org/base/memory/
H A Ddiscardable_memory_emulated.cc41 Unlock();
77 void DiscardableMemoryEmulated::Unlock() { function in class:base::internal::DiscardableMemoryEmulated
H A Ddiscardable_memory_manager_unittest.cc106 void Unlock(TestAllocationImpl* allocation) { function in class:base::__anon2334::DiscardableMemoryManagerTestBase
148 Unlock(&allocation);
170 Unlock(&allocation);
175 Unlock(&allocation);
187 Unlock(&allocation);
196 Unlock(&allocation);
208 Unlock(&allocation);
218 Unlock(&allocation);
235 Unlock(&allocation);
237 Unlock(
[all...]
/external/chromium_org/third_party/leveldatabase/port/
H A Dport_chromium.cc27 void Mutex::Unlock() { function in class:leveldb::port::Mutex
/external/compiler-rt/lib/tsan/benchmarks/
H A Dvts_many_threads_bench.cc36 void Unlock() { pthread_mutex_unlock(&m_); } function in class:Mutex
65 mutexes[(offset + i) % kNumMutexes].Unlock();
/external/lldb/include/lldb/Host/
H A DProcessRunLock.h114 Unlock();
126 Unlock();
141 Unlock () function in class:lldb_private::ProcessRunLock::ProcessRunLocker
/external/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.h150 void Unlock() function in class:DisassemblerLLVMC
154 m_mutex.Unlock();
/external/ceres-solver/internal/ceres/
H A Dmutex.h80 // state between a call to Lock() and a call to Unlock() (that would
83 // Unlock() later, which is pretty perverse).
159 inline void Unlock(); // Release a lock acquired via Lock()
164 // be implemented as synonyms to Lock() and Unlock(). So you can use
170 inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock()
207 void Mutex::Unlock() { assert(mutex_++ == -1); } function in class:ceres::internal::Mutex
219 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); } function in class:ceres::internal::Mutex
225 void Mutex::ReaderUnlock() { Unlock(); }
239 void Mutex::Unlock() { CERES_SAFE_PTHREAD(pthread_rwlock_unlock); } function in class:ceres::internal::Mutex
261 void Mutex::Unlock() { CERES_SAFE_PTHREA function in class:ceres::internal::Mutex
[all...]
/external/chromium_org/chrome/browser/signin/
H A Dscreenlock_bridge.cc149 void ScreenlockBridge::Unlock(Profile* profile) { function in class:ScreenlockBridge
151 lock_handler_->Unlock(GetAuthenticatedUserEmail(profile));
/external/chromium_org/remoting/host/win/
H A Dchromoting_module.cc162 LONG ChromotingModule::Unlock() { function in class:remoting::ChromotingModule
163 LONG count = ATL::CAtlModuleT<ChromotingModule>::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...]
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dsimple_mutex.h79 // state between a call to Lock() and a call to Unlock() (that would
82 // Unlock() later, which is pretty perverse).
165 inline void Unlock(); // Release a lock acquired via Lock()
168 // be implemented as synonyms to Lock() and Unlock(). So you can use
174 inline void WriterUnlock() { Unlock(); } // Release a lock from WriterLock()
211 void Mutex::Unlock() { assert(mutex_++ == -1); } function in class:MUTEX_NAMESPACE::Mutex
228 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); } function in class:MUTEX_NAMESPACE::Mutex
232 void Mutex::ReaderUnlock() { Unlock(); }
250 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock); } function in class:MUTEX_NAMESPACE::Mutex
273 void Mutex::Unlock() { SAFE_PTHREA function in class:MUTEX_NAMESPACE::Mutex
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mutex.h39 void Unlock() { function in class:__sanitizer::StaticSpinMutex
79 void Unlock();
105 void Unlock() { function in class:__sanitizer::RWMutex
177 mu_->Unlock();
/external/lldb/source/Host/common/
H A DMutex.cpp135 Unlock();
139 // Unlock the current mutex in this object (if this owns a valid
149 Unlock ();
156 Mutex::Locker::Unlock () function in class:Mutex::Locker
160 m_mutex_ptr->Unlock ();
172 Unlock ();
317 // Unlock() will unlock the mutex. Calling Unlock() on this object
325 Mutex::Unlock() function in class:Mutex
346 TrackingMutex::Unlock () function in class:TrackingMutex
368 LoggingMutex::Unlock () function in class:LoggingMutex
[all...]
/external/regex-re2/util/
H A Dmutex.h59 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); } function in class:re2::Mutex
111 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock(&mutex_)); } function in class:re2::Mutex
126 void Mutex::Unlock() { SAFE_PTHREAD(pthread_mutex_unlock(&mutex_)); } function in class:re2::Mutex
129 void Mutex::ReaderUnlock() { Unlock(); }
137 void Mutex::Unlock() { LeaveCriticalSection(&mutex_); } function in class:re2::Mutex
140 void Mutex::ReaderUnlock() { Unlock(); }
152 ~MutexLock() { mu_->Unlock(); }
[all...]
/external/chromium_org/base/files/
H A Dfile_posix.cc449 File::Error File::Unlock() { function in class:base::File
H A Dfile_win.cc304 File::Error File::Unlock() { function in class:base::File
/external/chromium_org/content/child/npapi/
H A Dwebplugin_ime_win.cc184 void WebPluginIMEWin::Unlock() { function in class:content::WebPluginIMEWin
/external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
H A Dmain_wnd.h131 void Unlock() { function in class:MainWnd::VideoRenderer
161 ~AutoLock() { obj_->Unlock(); }
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmemory_region_map.cc204 Unlock();
236 Unlock();
246 Unlock();
275 Unlock();
292 // * At entry and exit of Lock() and Unlock(), the current thread
310 "Last Unlock didn't reset recursion_count_");
317 void MemoryRegionMap::Unlock() { function in class:MemoryRegionMap
325 lock_.Unlock();
355 Unlock();
372 Unlock();
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dmemory_region_map.cc196 Unlock();
217 Unlock();
227 Unlock();
243 Unlock();
255 // * At entry and exit of Lock() and Unlock(), the current thread
273 "Last Unlock didn't reset recursion_count_");
280 void MemoryRegionMap::Unlock() { function in class:MemoryRegionMap
288 lock_.Unlock();
318 Unlock();
335 Unlock();
[all...]
/external/chromium_org/v8/src/
H A Dv8threads.cc79 isolate_->thread_manager()->Unlock();
89 isolate_->thread_manager()->Unlock();
165 void ThreadManager::Unlock() { function in class:v8::internal::ThreadManager
167 mutex_.Unlock();

Completed in 1834 milliseconds

1234