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

1 2 3 4 5 6 7 8

  /external/v8/test/unittests/base/platform/
mutex-unittest.cc 54 mutex1.Unlock();
55 mutex2.Unlock();
56 mutex3.Unlock();
61 mutex3.Unlock();
62 mutex2.Unlock();
63 mutex1.Unlock();
75 recursive_mutex1.Unlock();
76 recursive_mutex1.Unlock();
77 recursive_mutex2.Unlock();
78 recursive_mutex2.Unlock();
    [all...]
  /external/drm_hwcomposer/
autolock.h 28 Unlock();
35 int Unlock();
autolock.cpp 43 int AutoLock::Unlock() {
45 ALOGE("Invalid attempt to unlock unlocked AutoLock %s", name_);
worker.h 29 int Unlock();
  /external/clang/test/PCH/
thread-safety-attrs.cpp 37 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/opencv3/samples/winrt/ImageManipulations/MediaExtensions/Common/
CritSec.h 30 void Unlock()
60 m_pCriticalSection->Unlock();
  /external/sfntly/cpp/src/sfntly/port/
lock.h 51 void Unlock();
66 lock_.Unlock();
lock.cc 44 void Lock::Unlock() {
66 void Lock::Unlock() {
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_mutex.cc 28 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(m)
    [all...]
  /external/sfntly/cpp/src/test/
lock_test.cc 25 // 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/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp 34 void Unlock() __attribute__((unlock_function));
161 sls_mw.mu.Unlock();
167 sls_mu.Unlock();
173 sls_mu.Unlock();
179 sls_mu2.Unlock();
185 sls_mu.Unlock();
191 sls_mu.Unlock();
197 sls_mu2.Unlock();
198 sls_mu.Unlock();
204 sls_mu.Unlock();
3699 void Foo::unlock() { mu1_.Unlock(); mu2_.Unlock(); } function in class:MultipleAttributeTest::Foo
    [all...]
warn-thread-safety-negative.cpp 34 void Unlock() __attribute__((unlock_function));
57 mu.Unlock();
71 mu.Unlock();
81 mu.Unlock();
92 mu.Unlock();
99 mu.Unlock();
warn-thread-safety-verbose.cpp 31 void Unlock() __attribute__((unlock_function));
71 mu.Unlock();
77 mu.Unlock();
83 mu.Unlock();
  /development/host/windows/usb/api/
adb_api_instance.cpp 38 adb_app_instance_map_locker.Unlock();
adb_object_handle.cpp 94 the_map_locker.Unlock();
133 the_map_locker.Unlock();
164 the_map_locker.Unlock();
  /external/libchrome/base/synchronization/
lock_impl.h 44 void Unlock();
  /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...]
  /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...]
  /hardware/qcom/display/msm8996/sdm/include/utils/
locker.h 49 locker_.Unlock();
64 locker_.Unlock();
80 locker_.Unlock();
99 locker_.Unlock();
120 locker_.Unlock();
138 void Unlock() { pthread_mutex_unlock(&mutex_); }
  /hardware/qcom/display/msmcobalt/sdm/include/utils/
locker.h 49 locker_.Unlock();
64 locker_.Unlock();
80 locker_.Unlock();
99 locker_.Unlock();
120 locker_.Unlock();
138 void Unlock() { pthread_mutex_unlock(&mutex_); }
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutex.h 48 void Unlock();
75 void Unlock(MutexType t);
  /external/v8/src/base/platform/
mutex.h 28 // either |Lock()| or |TryLock()| until it calls |Unlock()|.
49 void Unlock();
120 // calls to |Unlock()|.
138 // after the thread makes a matching number of calls to |Unlock()|.
144 // more call to |Lock()| than there were calls to unlock() made by this
148 void Unlock();
205 ~LockGuard() { mutex_->Unlock(); }
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
mutex.h 60 void Unlock();
85 ~MutexLock() { this->mu_->Unlock(); }
100 ~MutexLockMaybe() { if (this->mu_ != NULL) { this->mu_->Unlock(); } }
  /external/valgrind/drd/tests/
tsan_unittest.cpp 153 printf_mu.Unlock(); \
373 // 4. while(COND) / e. MU.Unlock()
375 // 5. MU.Unlock()
386 MU.Unlock();
397 MU.Unlock();
421 // /--- d. MU.Unlock()
423 // 4. MU.Unlock()
433 MU.Unlock(); // calls ANNOTATE_CONDVAR_SIGNAL;
441 MU.Unlock(); // Waker is done!
503 // 4. while(COND) e. MU.Unlock()
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mutex.h 39 void Unlock() {
85 void Unlock();
111 void Unlock() {
183 mu_->Unlock();

Completed in 408 milliseconds

1 2 3 4 5 6 7 8