Searched refs:Mutex (Results 51 - 75 of 511) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Drenderbuffer.c41 _glthread_INIT_MUTEX(rb->Mutex);
85 _glthread_DESTROY_MUTEX(rb->Mutex);
154 _glthread_LOCK_MUTEX(oldRb->Mutex);
159 _glthread_UNLOCK_MUTEX(oldRb->Mutex);
172 _glthread_LOCK_MUTEX(rb->Mutex);
175 _glthread_UNLOCK_MUTEX(rb->Mutex);
H A Dhash.c65 _glthread_Mutex Mutex; /**< mutual exclusion lock */ member in struct:_mesa_HashTable
82 _glthread_INIT_MUTEX(table->Mutex);
115 _glthread_DESTROY_MUTEX(table->Mutex);
160 _glthread_LOCK_MUTEX(table->Mutex);
162 _glthread_UNLOCK_MUTEX(table->Mutex);
185 _glthread_LOCK_MUTEX(table->Mutex);
202 _glthread_UNLOCK_MUTEX(table->Mutex);
216 _glthread_UNLOCK_MUTEX(table->Mutex);
246 _glthread_LOCK_MUTEX(table->Mutex);
261 _glthread_UNLOCK_MUTEX(table->Mutex);
[all...]
/external/mesa3d/src/mesa/main/
H A Drenderbuffer.c41 _glthread_INIT_MUTEX(rb->Mutex);
85 _glthread_DESTROY_MUTEX(rb->Mutex);
154 _glthread_LOCK_MUTEX(oldRb->Mutex);
159 _glthread_UNLOCK_MUTEX(oldRb->Mutex);
172 _glthread_LOCK_MUTEX(rb->Mutex);
175 _glthread_UNLOCK_MUTEX(rb->Mutex);
H A Dhash.c65 _glthread_Mutex Mutex; /**< mutual exclusion lock */ member in struct:_mesa_HashTable
82 _glthread_INIT_MUTEX(table->Mutex);
115 _glthread_DESTROY_MUTEX(table->Mutex);
160 _glthread_LOCK_MUTEX(table->Mutex);
162 _glthread_UNLOCK_MUTEX(table->Mutex);
185 _glthread_LOCK_MUTEX(table->Mutex);
202 _glthread_UNLOCK_MUTEX(table->Mutex);
216 _glthread_UNLOCK_MUTEX(table->Mutex);
246 _glthread_LOCK_MUTEX(table->Mutex);
261 _glthread_UNLOCK_MUTEX(table->Mutex);
[all...]
/external/chromium_org/third_party/leveldatabase/src/port/
H A Dport_posix.h85 class Mutex { class in namespace:leveldb::port
87 Mutex();
88 ~Mutex();
99 Mutex(const Mutex&);
100 void operator=(const Mutex&);
105 explicit CondVar(Mutex* mu);
112 Mutex* mu_;
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglglobals.c42 &_eglGlobalMutex, /* Mutex */
68 _eglLockMutex(_eglGlobal.Mutex);
78 _eglUnlockMutex(_eglGlobal.Mutex);
/external/mesa3d/src/egl/main/
H A Deglglobals.c42 &_eglGlobalMutex, /* Mutex */
68 _eglLockMutex(_eglGlobal.Mutex);
78 _eglUnlockMutex(_eglGlobal.Mutex);
/external/lldb/source/Breakpoint/
H A DBreakpointLocationList.cpp28 m_mutex (Mutex::eMutexTypeRecursive),
41 Mutex::Locker locker (m_mutex);
81 Mutex::Locker locker (m_mutex);
96 Mutex::Locker locker (m_mutex);
115 Mutex::Locker locker (m_mutex);
149 Mutex::Locker locker (m_mutex);
162 Mutex::Locker locker (m_mutex);
173 Mutex::Locker locker (m_mutex);
184 Mutex::Locker locker (m_mutex);
193 Mutex
[all...]
H A DBreakpointList.cpp22 m_mutex (Mutex::eMutexTypeRecursive),
37 Mutex::Locker locker(m_mutex);
54 Mutex::Locker locker(m_mutex);
74 Mutex::Locker locker(m_mutex);
84 Mutex::Locker locker(m_mutex);
137 Mutex::Locker locker(m_mutex);
149 Mutex::Locker locker(m_mutex);
161 Mutex::Locker locker(m_mutex);
177 Mutex::Locker locker(m_mutex);
193 Mutex
[all...]
H A DWatchpointList.cpp23 m_mutex (Mutex::eMutexTypeRecursive),
36 Mutex::Locker locker (m_mutex);
57 Mutex::Locker locker (m_mutex);
73 Mutex::Locker locker (m_mutex);
91 Mutex::Locker locker (m_mutex);
140 Mutex::Locker locker (m_mutex);
173 Mutex::Locker locker (m_mutex);
187 Mutex::Locker locker (m_mutex);
211 Mutex::Locker locker (m_mutex);
232 Mutex
[all...]
/external/lldb/source/Core/
H A DPluginManager.cpp23 #include "lldb/Host/Mutex.h"
51 static Mutex &
54 static Mutex g_plugin_map_mutex (Mutex::eMutexTypeRecursive);
68 Mutex::Locker locker (GetPluginMapMutex ());
76 Mutex::Locker locker (GetPluginMapMutex ());
205 Mutex::Locker locker (GetPluginMapMutex ());
243 static Mutex &
246 static Mutex g_instances_mutex (Mutex
[all...]
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test_util_linux.cc95 Mutex::Mutex(Type type)
100 Mutex::~Mutex() {
104 void Mutex::Init() {
117 void Mutex::StaticInit() {
125 void Mutex::Destroy() {
136 void Mutex::Lock() {
146 bool Mutex::TryLock() {
157 void Mutex
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DThreadSafeDataTransport.h63 Mutex m_mutex;
/external/chromium_org/v8/src/base/platform/
H A Dcondition-variable.h27 // on a Mutex first. The |Wait()| and |WaitFor()| operations atomically release
50 void Wait(Mutex* mutex);
59 bool WaitFor(Mutex* mutex, const TimeDelta& rel_time) WARN_UNUSED_RESULT;
74 Mutex* mutex() { return &mutex_; }
80 Mutex mutex_;
107 // LockGuard<Mutex> lock_guard(&my_mutex);
H A Dmutex.cc113 Mutex::Mutex() { function in class:v8::base::Mutex
121 Mutex::~Mutex() {
127 void Mutex::Lock() {
133 void Mutex::Unlock() {
139 bool Mutex::TryLock() {
/external/clang/test/Misc/
H A Dast-dump-color.cpp18 class __attribute__((lockable)) Mutex { class
65 //CHECK: {{^}}[[Blue]]|-[[RESET]][[GREEN]]CXXRecordDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:18:1[[RESET]], [[Yellow]]line:25:1[[RESET]]> [[Yellow]]line:18:33[[RESET]] class[[CYAN]] Mutex[[RESET]] definition{{$}}
67 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXRecordDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:1[[RESET]], [[Yellow]]col:33[[RESET]]> [[Yellow]]col:33[[RESET]] implicit class[[CYAN]] Mutex[[RESET]]{{$}}
78 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXConstructorDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]line:18:33[[RESET]]> [[Yellow]]col:33[[RESET]] implicit used[[CYAN]] Mutex[[RESET]] [[Green]]'void (void)'[[RESET]] inline{{.*$}}
80 //CHECK: {{^}}[[Blue]]| |-[[RESET]][[GREEN]]CXXConstructorDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:33[[RESET]]> [[Yellow]]col:33[[RESET]] implicit[[CYAN]] Mutex[[RESET]] [[Green]]'void (const class Mutex &)'[[RESET]] inline{{ .*$}}
81 //CHECK: {{^}}[[Blue]]| | `-[[RESET]][[GREEN]]ParmVarDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:33[[RESET]]> [[Yellow]]col:33[[RESET]] [[Green]]'const class Mutex &'[[RESET]]{{$}}
82 //CHECK: {{^}}[[Blue]]| `-[[RESET]][[GREEN]]CXXConstructorDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:33[[RESET]]> [[Yellow]]col:33[[RESET]] implicit[[CYAN]] Mutex[[RESET]] [[Green]]'void (class Mutex &&)'[[RESET]] inline{{ .*$}}
83 //CHECK: {{^}}[[Blue]]| `-[[RESET]][[GREEN]]ParmVarDecl[[RESET]][[Yellow]] 0x{{[0-9a-fA-F]*}}[[RESET]] <[[Yellow]]col:33[[RESET]]> [[Yellow]]col:33[[RESET]] [[Green]]'class Mutex
[all...]
/external/lldb/include/lldb/Host/
H A DCondition.h16 #include "lldb/Host/Mutex.h"
102 Wait (Mutex &mutex, const TimeValue *abstime = NULL, bool *timed_out = NULL);
H A DPredicate.h14 #include "lldb/Host/Mutex.h"
100 Mutex::Locker locker(m_mutex);
123 Mutex::Locker locker(m_mutex);
151 Mutex::Locker locker(m_mutex);
179 Mutex::Locker locker(m_mutex);
222 // class (Mutex::Locker) to allow us to return at any point in this
224 Mutex::Locker locker(m_mutex);
272 // class (Mutex::Locker) to allow us to return at any point in this
274 Mutex::Locker locker(m_mutex);
326 // class (Mutex
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DThreadingPrimitives.h99 class WTF_EXPORT Mutex : public MutexBase { class in namespace:WTF
101 Mutex() : MutexBase(false) { } function in class:WTF::Mutex
116 MutexTryLocker(Mutex& mutex) : m_mutex(mutex), m_locked(mutex.tryLock()) { }
126 Mutex& m_mutex;
156 using WTF::Mutex;
/external/chromium_org/third_party/leveldatabase/port/
H A Dport_chromium.h37 class Mutex { class in namespace:leveldb::port
39 Mutex();
40 ~Mutex();
49 DISALLOW_COPY_AND_ASSIGN(Mutex);
54 explicit CondVar(Mutex* mu);
/external/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp23 m_map_mutex(Mutex::eMutexTypeRecursive),
37 Mutex::Locker locker(m_map_mutex);
46 Mutex::Locker locker(m_map_mutex);
60 Mutex::Locker locker(m_map_mutex);
70 Mutex::Locker locker(m_map_mutex);
80 Mutex::Locker locker(m_map_mutex);
109 Mutex::Locker locker(m_map_mutex);
122 Mutex::Locker locker(m_map_mutex);
132 Mutex::Locker locker(m_map_mutex);
143 Mutex
[all...]
/external/clang/test/Sema/
H A Dwarn-thread-safety-analysis.c28 struct LOCKABLE Mutex {}; struct
31 struct Mutex *mu_;
35 void mutex_exclusive_lock(struct Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu);
36 void mutex_shared_lock(struct Mutex *mu) SHARED_LOCK_FUNCTION(mu);
37 void mutex_unlock(struct Mutex *mu) UNLOCK_FUNCTION(mu);
38 void mutex_shared_unlock(struct Mutex *mu) __attribute__((release_shared_capability(mu)));
39 void mutex_exclusive_unlock(struct Mutex *mu) __attribute__((release_capability(mu)));
42 struct Mutex mu1;
43 struct Mutex mu2 ACQUIRED_AFTER(mu1);
/external/lldb/include/lldb/Target/
H A DPlatform.h25 #include "lldb/Host/Mutex.h"
566 Mutex m_uid_map_mutex;
567 Mutex m_gid_map_mutex;
576 Mutex::Locker locker (m_uid_map_mutex);
592 Mutex::Locker locker (m_uid_map_mutex);
604 Mutex::Locker locker (m_uid_map_mutex);
612 Mutex::Locker locker (m_uid_map_mutex);
619 Mutex::Locker locker (m_gid_map_mutex);
635 Mutex::Locker locker (m_gid_map_mutex);
647 Mutex
[all...]
/external/ceres-solver/internal/ceres/
H A Dexecution_summary.h63 Mutex times_mutex_;
66 Mutex calls_mutex_;
/external/compiler-rt/lib/tsan/dd/
H A Ddd_rtl.h24 struct Mutex { struct in namespace:__dsan
42 typedef AddrHashMap<Mutex, 31051> MutexHashMap;

Completed in 618 milliseconds

1234567891011>>