HomeSort by relevance Sort by last modified time
    Searched defs:Unlock (Results 26 - 50 of 73) sorted by null

12 3

  /external/chromium_org/v8/src/base/platform/
mutex.cc 133 void Mutex::Unlock() {
171 void RecursiveMutex::Unlock() {
  /external/lldb/include/lldb/Host/
ProcessRunLock.h 114 Unlock();
126 Unlock();
141 Unlock ()
  /external/lldb/source/Plugins/Disassembler/llvm/
DisassemblerLLVMC.h 150 void Unlock()
154 m_mutex.Unlock();
  /external/lldb/tools/debugserver/source/
PThreadMutex.h 44 void Unlock();
71 void Unlock()
79 Unlock();
84 // unlock any the current mutex and lock the new one if it is valid
87 Unlock();
123 err = Unlock();
139 int Unlock()
  /external/chromium_org/base/memory/
discardable_memory_emulated.cc 41 Unlock();
77 void DiscardableMemoryEmulated::Unlock() {
discardable_memory_manager_unittest.cc 106 void Unlock(TestAllocationImpl* allocation) {
148 Unlock(&allocation);
169 // Now unlock so we can lock later.
170 Unlock(&allocation);
175 Unlock(&allocation);
186 // Now unlock so we can lock later.
187 Unlock(&allocation);
196 Unlock(&allocation);
207 // Now unlock so we can lock later.
208 Unlock(&allocation)
    [all...]
  /external/chromium_org/remoting/host/win/
chromoting_module.cc 162 LONG ChromotingModule::Unlock() {
163 LONG count = ATL::CAtlModuleT<ChromotingModule>::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/lldb/source/Host/common/
Mutex.cpp 81 // Manually call unlock so we don't to any of this error checking
135 Unlock();
139 // Unlock the current mutex in this object (if this owns a valid
149 Unlock ();
156 Mutex::Locker::Unlock ()
160 m_mutex_ptr->Unlock ();
172 Unlock ();
317 // Unlock() will unlock the mutex. Calling Unlock() on this objec
    [all...]
  /bionic/libc/bionic/
pthread_key.cpp 101 Unlock();
158 // and/or pthread_key_delete, we need to temporarily unlock
160 Unlock();
183 void Unlock() {
238 // For performance reasons, we do not lock/unlock the global TLS map
  /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).
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); }
219 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); }
225 void Mutex::ReaderUnlock() { Unlock(); }
239 void Mutex::Unlock() { CERES_SAFE_PTHREAD(pthread_rwlock_unlock);
    [all...]
  /external/chromium_org/chrome/browser/signin/
screenlock_bridge.cc 149 void ScreenlockBridge::Unlock(Profile* profile) {
151 lock_handler_->Unlock(GetAuthenticatedUserEmail(profile));
  /external/chromium_org/content/child/npapi/
webplugin_ime_win.cc 184 void WebPluginIMEWin::Unlock() {
  /external/chromium_org/third_party/re2/util/
mutex.h 63 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); }
115 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock(&mutex_)); }
130 void Mutex::Unlock() { SAFE_PTHREAD(pthread_mutex_unlock(&mutex_)); }
133 void Mutex::ReaderUnlock() { Unlock(); }
141 void Mutex::Unlock() { LeaveCriticalSection(&mutex_); }
144 void Mutex::ReaderUnlock() { Unlock(); }
156 ~MutexLock() { mu_->Unlock(); }
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
simple_mutex.h 72 // look at the bool, and not try to lock/unlock until the bool makes
79 // 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); }
228 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); }
232 void Mutex::ReaderUnlock() { Unlock(); }
250 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
simple_mutex.h 72 // look at the bool, and not try to lock/unlock until the bool makes
79 // 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); }
228 void Mutex::Unlock() { if (is_safe_) LeaveCriticalSection(&mutex_); }
232 void Mutex::ReaderUnlock() { Unlock(); }
250 void Mutex::Unlock() { SAFE_PTHREAD(pthread_rwlock_unlock);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.cc 196 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() {
282 RAW_CHECK(recursion_count_ > 0, "unlock when not held");
284 "unlock when not held, and recursion_count_ is wrong");
285 RAW_CHECK(current_thread_is(lock_owner_tid_), "unlock by non-holder")
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mutex.h 39 void Unlock() {
79 void Unlock();
105 void Unlock() {
177 mu_->Unlock();
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutex.cc 159 void InternalDeadlockDetector::Unlock(MutexType t) {
246 void Mutex::Unlock() {
251 cur_thread()->internal_deadlock_detector.Unlock(type_);
279 cur_thread()->internal_deadlock_detector.Unlock(type_);
  /external/lzma/CPP/Windows/
Synchronization.h 156 void Unlock() { _object->Leave(); }
159 ~CCriticalSectionLock() { Unlock(); }
  /external/chromium_org/base/files/
file_posix.cc 449 File::Error File::Unlock() {
file_win.cc 304 File::Error File::Unlock() {
  /external/chromium_org/chrome/browser/chromeos/drive/
change_list_loader.cc 182 base::Bind(&LoaderController::Unlock,
197 void LoaderController::Unlock() {
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
main_wnd.h 131 void Unlock() {
161 ~AutoLock() { obj_->Unlock(); }
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.cc 272 void Mutex::Unlock() {
308 void Mutex::Unlock() {

Completed in 837 milliseconds

12 3