Home
last modified time | relevance | path

Searched refs:MutexLock (Results 1 – 25 of 67) sorted by relevance

123

/external/ImageMagick/Magick++/lib/Magick++/
DThread.h27 class MagickPPExport MutexLock
32 MutexLock(void);
35 ~MutexLock(void);
46 MutexLock(const MutexLock& original_);
49 MutexLock& operator=(const MutexLock& original );
DBlobRef.h46 MutexLock _mutexLock; // Mutex lock
DImageRef.h76 MutexLock _mutexLock; // Mutex lock
/external/ImageMagick/Magick++/lib/
DThread.cpp18 Magick::MutexLock::MutexLock(void) in MutexLock() function in Magick::MutexLock
65 Magick::MutexLock::~MutexLock(void) in ~MutexLock()
84 void Magick::MutexLock::lock(void) in lock()
103 void Magick::MutexLock::unlock(void) in unlock()
/external/regex-re2/util/
Dmutex.h149 class MutexLock {
151 explicit MutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); } in MutexLock() function
152 ~MutexLock() { mu_->Unlock(); } in ~MutexLock()
156 MutexLock(const MutexLock&);
157 void operator=(const MutexLock&);
184 #define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_decl_missing_var_name) macro
Datomicops.h50 re2::MutexLock l(&mu); in WriteMemoryBarrier()
/external/google-benchmark/src/
Dmutex.h96 class SCOPED_CAPABILITY MutexLock
100 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) in MutexLock() function
102 ~MutexLock() RELEASE() {} in RELEASE()
115 MutexLock m_lock(mutex_); in WaitForNotification()
124 MutexLock lock(mutex_); in Notify()
Dbenchmark.cc142 MutexLock ml(lock_); in StartTimer()
160 MutexLock ml(lock_); in StopTimer()
174 MutexLock l(lock_); in Finalize()
185 MutexLock l(lock_); in real_time_used()
192 MutexLock l(lock_); in cpu_time_used()
229 bool Barrier(MutexLock& ml) REQUIRES(lock_) { in Barrier()
330 MutexLock l(mutex_); in AddBenchmark()
351 MutexLock l(mutex_); in FindBenchmarks()
607 MutexLock l(GetBenchmarkLock()); in RunInThread()
632 MutexLock l(GetBenchmarkLock()); in RunBenchmark()
[all …]
/external/gmock/src/
Dgmock-spec-builders.cc177 MutexLock l(&mutex_); in CheckActionCountIfNotDone()
272 MutexLock l(&g_gmock_mutex); in RegisterOwner()
286 MutexLock l(&g_gmock_mutex); in SetOwnerAndName()
299 MutexLock l(&g_gmock_mutex); in MockObject()
316 MutexLock l(&g_gmock_mutex); in Name()
600 internal::MutexLock l(&internal::g_gmock_mutex); in SetReactionOnUninterestingCalls()
631 internal::MutexLock l(&internal::g_gmock_mutex); in UnregisterCallReaction()
640 internal::MutexLock l(&internal::g_gmock_mutex); in GetReactionOnUninterestingCalls()
649 internal::MutexLock l(&internal::g_gmock_mutex); in AllowLeak()
658 internal::MutexLock l(&internal::g_gmock_mutex); in VerifyAndClearExpectations()
[all …]
Dgmock-internal-utils.cc138 MutexLock l(&g_log_mutex); in Log()
/external/google-breakpad/src/testing/src/
Dgmock-spec-builders.cc177 MutexLock l(&mutex_); in CheckActionCountIfNotDone()
272 MutexLock l(&g_gmock_mutex); in RegisterOwner()
286 MutexLock l(&g_gmock_mutex); in SetOwnerAndName()
299 MutexLock l(&g_gmock_mutex); in MockObject()
316 MutexLock l(&g_gmock_mutex); in Name()
600 internal::MutexLock l(&internal::g_gmock_mutex); in SetReactionOnUninterestingCalls()
631 internal::MutexLock l(&internal::g_gmock_mutex); in UnregisterCallReaction()
640 internal::MutexLock l(&internal::g_gmock_mutex); in GetReactionOnUninterestingCalls()
649 internal::MutexLock l(&internal::g_gmock_mutex); in AllowLeak()
658 internal::MutexLock l(&internal::g_gmock_mutex); in VerifyAndClearExpectations()
[all …]
/external/llvm/test/CodeGen/ARM/
Dcall-tc.ll147 %class.MutexLock = type { i8 }
156 %lock = alloca %class.MutexLock, align 1
157 %1 = call %class.MutexLock* @_ZN9MutexLockC1Ev(%class.MutexLock* %lock)
160 %4 = call %class.MutexLock* @_ZN9MutexLockD1Ev(%class.MutexLock* %lock)
164 declare %class.MutexLock* @_ZN9MutexLockC1Ev(%class.MutexLock*) unnamed_addr nounwind align 2
166 declare %class.MutexLock* @_ZN9MutexLockD1Ev(%class.MutexLock*) unnamed_addr nounwind align 2
/external/protobuf/src/google/protobuf/stubs/
Donce_unittest.cc88 MutexLock lock(&done_mutex_); in IsDone()
124 MutexLock lock(&done_mutex_); in Start()
142 MutexLock lock(&mutex_); in CurrentState()
162 MutexLock lock(&mutex_); in Init()
Dcommon.cc185 MutexLock lock(log_silencer_count_mutex_); in Finish()
223 MutexLock lock(internal::log_silencer_count_mutex_); in LogSilencer()
229 MutexLock lock(internal::log_silencer_count_mutex_); in ~LogSilencer()
361 MutexLock lock(shutdown_functions_mutex); in OnShutdown()
Dcommon.h1125 class LIBPROTOBUF_EXPORT MutexLock {
1127 explicit MutexLock(Mutex *mu) : mu_(mu) { this->mu_->Lock(); } in MutexLock() function
1128 ~MutexLock() { this->mu_->Unlock(); } in ~MutexLock()
1131 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(MutexLock);
1135 typedef MutexLock ReaderMutexLock;
1136 typedef MutexLock WriterMutexLock;
1154 using internal::MutexLock;
/external/clang/test/PCH/
Dthread-safety-attrs.cpp43 class __attribute__((scoped_lockable)) MutexLock { class
45 MutexLock(Mutex *mu) __attribute__((exclusive_lock_function(mu)));
46 ~MutexLock() __attribute__((unlock_function));
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
Dgtest-linked_ptr.h110 MutexLock lock(&g_linked_ptr_mutex); in join()
122 MutexLock lock(&g_linked_ptr_mutex); in depart()
/external/llvm/utils/unittest/googletest/include/gtest/internal/
Dgtest-linked_ptr.h110 MutexLock lock(&g_linked_ptr_mutex); in join()
122 MutexLock lock(&g_linked_ptr_mutex); in depart()
/external/protobuf/gtest/include/gtest/internal/
Dgtest-linked_ptr.h110 MutexLock lock(&g_linked_ptr_mutex); in join()
122 MutexLock lock(&g_linked_ptr_mutex); in depart()
/external/mesa3d/src/gtest/include/gtest/internal/
Dgtest-linked_ptr.h110 MutexLock lock(&g_linked_ptr_mutex); in join()
122 MutexLock lock(&g_linked_ptr_mutex); in depart()
/external/gtest/include/gtest/internal/
Dgtest-linked_ptr.h110 MutexLock lock(&g_linked_ptr_mutex); in join()
122 MutexLock lock(&g_linked_ptr_mutex); in depart()
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
Dgtest-linked_ptr.h110 MutexLock lock(&g_linked_ptr_mutex); in join()
122 MutexLock lock(&g_linked_ptr_mutex); in depart()
/external/valgrind/drd/tests/
Dtsan_thread_wrappers_pthread.h261 class MutexLock { // Scoped Mutex Locker/Unlocker
263 MutexLock(Mutex *mu) in MutexLock() function
267 ~MutexLock() { in ~MutexLock()
576 MutexLock lock(&mu_); in DecrementCount()
Dtsan_unittest.cpp55 #define WriterLockScoped MutexLock
4694 MutexLock a(&A); in Thread1()
4695 MutexLock b(&B); in Thread1()
4700 MutexLock b(&B); in Thread2()
4701 MutexLock c(&C); in Thread2()
4706 MutexLock a(&A); in Thread3()
4707 MutexLock c(&C); in Thread3()
5724 MutexLock lock(&mu); in InitMe()
6270 MutexLock lock(&mu); in Swapper()
6279 MutexLock lock(&mu); in Worker()
[all …]
/external/ImageMagick/www/Magick++/
DImage.fig88 4 2 0 0 0 0 8 0.0000 4 135 1485 4725 3750 class MutexLock _mutexLock\001

123