HomeSort by relevance Sort by last modified time
    Searched refs:Mutex (Results 76 - 100 of 1206) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/lldb/source/Interpreter/
CommandHistory.cpp 18 m_mutex(Mutex::eMutexTypeRecursive),
28 Mutex::Locker locker(m_mutex);
35 Mutex::Locker locker(m_mutex);
42 Mutex::Locker locker(m_mutex);
81 Mutex::Locker locker(m_mutex);
96 Mutex::Locker locker(m_mutex);
106 Mutex::Locker locker(m_mutex);
121 Mutex::Locker locker(m_mutex);
130 Mutex::Locker locker(m_mutex);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.cc 126 static Mutex* log_silencer_count_mutex_ = NULL;
134 log_silencer_count_mutex_ = new Mutex;
243 // emulates google3/base/mutex.cc
247 struct Mutex::Internal {
248 CRITICAL_SECTION mutex; member in struct:google::protobuf::Mutex::Internal
255 Mutex::Mutex()
257 InitializeCriticalSection(&mInternal->mutex);
260 Mutex::~Mutex() {
288 pthread_mutex_t mutex; member in struct:google::protobuf::Mutex::Internal
    [all...]
  /external/lldb/include/lldb/Target/
Unwind.h 18 #include "lldb/Host/Mutex.h"
43 Mutex::Locker locker(m_unwind_mutex);
51 Mutex::Locker locker(m_unwind_mutex);
77 Mutex::Locker locker(m_unwind_mutex);
84 Mutex::Locker locker(m_unwind_mutex);
113 Mutex m_unwind_mutex;
  /external/protobuf/src/google/protobuf/stubs/
common.cc 126 static Mutex* log_silencer_count_mutex_ = NULL;
134 log_silencer_count_mutex_ = new Mutex;
239 // emulates google3/base/mutex.cc
243 struct Mutex::Internal {
244 CRITICAL_SECTION mutex; member in struct:google::protobuf::Mutex::Internal
251 Mutex::Mutex()
253 InitializeCriticalSection(&mInternal->mutex);
256 Mutex::~Mutex() {
284 pthread_mutex_t mutex; member in struct:google::protobuf::Mutex::Internal
    [all...]
  /external/lldb/source/API/
SBBreakpointLocation.cpp 90 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex());
102 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex());
112 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex());
124 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex());
136 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex());
146 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex());
156 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex());
167 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex());
178 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex());
189 Mutex::Locker api_locker (m_opaque_sp->GetBreakpoint().GetTarget().GetAPIMutex())
    [all...]
  /external/chromium_org/mojo/public/cpp/utility/tests/
mutex_unittest.cc 5 #include "mojo/public/cpp/utility/mutex.h"
20 Mutex mutex; local
22 mutex.Lock();
23 mutex.AssertHeld();
24 mutex.Unlock();
26 EXPECT_TRUE(mutex.TryLock());
27 mutex.AssertHeld();
28 mutex.Unlock();
31 MutexLock lock(&mutex);
133 Mutex mutex; local
189 Mutex mutex; local
227 Mutex mutex; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashTable.cpp 36 static Mutex& hashTableStatsMutex()
38 AtomicallyInitializedStatic(Mutex&, mutex = *new Mutex);
39 return mutex;
  /frameworks/av/drm/mediadrm/plugins/clearkey/
SessionLibrary.h 21 #include <utils/Mutex.h>
48 static android::Mutex sSingletonLock;
51 android::Mutex mSessionsLock;
  /frameworks/base/libs/hwui/renderthread/
RenderTask.h 24 class Mutex;
62 SignalingRenderTask(RenderTask* task, Mutex* lock, Condition* signal)
68 Mutex* mLock;
  /frameworks/native/opengl/libagl/
TokenManager.cpp 37 Mutex::Autolock _l(mLock);
45 Mutex::Autolock _l(mLock);
56 Mutex::Autolock _l(mLock);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
renderbuffer.c 41 _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);
  /external/mesa3d/src/mesa/main/
renderbuffer.c 41 _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);
  /frameworks/av/media/libmedia/
IMediaDeathNotifier.cpp 28 Mutex IMediaDeathNotifier::sServiceLock;
38 Mutex::Autolock _l(sServiceLock);
65 Mutex::Autolock _l(sServiceLock);
73 Mutex::Autolock _l(sServiceLock);
84 Mutex::Autolock _l(sServiceLock);
104 Mutex::Autolock _l(sServiceLock);
  /libcore/jsr166-tests/src/test/java/jsr166/
AbstractQueuedLongSynchronizerTest.java 20 * A simple mutex class, adapted from the class javadoc. Exclusive
23 static class Mutex extends AbstractQueuedLongSynchronizer {
96 final Mutex sync;
97 InterruptibleSyncRunnable(Mutex sync) { this.sync = sync; }
108 final Mutex sync;
109 InterruptedSyncRunnable(Mutex sync) { this.sync = sync; }
172 * after acquiring mutex.
174 void assertHasWaitersUnlocked(Mutex sync, ConditionObject c,
184 void assertHasWaitersLocked(Mutex sync, ConditionObject c,
251 Mutex sync = new Mutex()
    [all...]
AbstractQueuedSynchronizerTest.java 20 * A simple mutex class, adapted from the class javadoc. Exclusive
26 static class Mutex extends AbstractQueuedSynchronizer {
100 final Mutex sync;
101 InterruptibleSyncRunnable(Mutex sync) { this.sync = sync; }
112 final Mutex sync;
113 InterruptedSyncRunnable(Mutex sync) { this.sync = sync; }
175 * after acquiring mutex.
177 void assertHasWaitersUnlocked(Mutex sync, ConditionObject c,
187 void assertHasWaitersLocked(Mutex sync, ConditionObject c,
254 Mutex sync = new Mutex()
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/port/
port_posix.h 85 class Mutex {
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/
eglglobals.c 42 &_eglGlobalMutex, /* Mutex */
68 _eglLockMutex(_eglGlobal.Mutex);
78 _eglUnlockMutex(_eglGlobal.Mutex);
  /external/mesa3d/src/egl/main/
eglglobals.c 42 &_eglGlobalMutex, /* Mutex */
68 _eglLockMutex(_eglGlobal.Mutex);
78 _eglUnlockMutex(_eglGlobal.Mutex);
  /frameworks/native/services/surfaceflinger/
EventControlThread.cpp 28 Mutex::Autolock lock(mMutex);
34 Mutex::Autolock lock(mMutex);
  /external/lldb/source/Breakpoint/
BreakpointLocationList.cpp 28 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::Locker locker (m_mutex)
    [all...]
  /external/lldb/source/Core/
PluginManager.cpp 23 #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::eMutexTypeRecursive)
    [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_linux.cc 95 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::Unlock()
    [all...]
  /frameworks/av/services/audiopolicy/
AudioPolicyInterfaceImpl.cpp 48 Mutex::Autolock _l(mLock);
81 Mutex::Autolock _l(mLock);
89 Mutex::Autolock _l(mLock);
109 Mutex::Autolock _l(mLock);
136 Mutex::Autolock _l(mLock);
152 Mutex::Autolock _l(mLock);
167 Mutex::Autolock _l(mLock);
177 Mutex::Autolock _l(mLock);
200 Mutex::Autolock _l(mLock);
210 Mutex::Autolock _l(mLock)
    [all...]
  /art/runtime/
atomic.cc 18 #include "base/mutex.h"
24 std::vector<Mutex*>* QuasiAtomic::gSwapMutexes = nullptr;
26 Mutex* QuasiAtomic::GetSwapMutex(const volatile int64_t* addr) {
32 gSwapMutexes = new std::vector<Mutex*>;
34 gSwapMutexes->push_back(new Mutex("QuasiAtomic stripe", kSwapMutexesLock));
  /external/ceres-solver/internal/ceres/
block_random_access_matrix.h 36 #include "ceres/mutex.h"
56 // cell as a submatrix and a mutex that guards this submatrix. If the
58 // to use the mutex to exclude other writers from writing to the cell
85 // Mutex guarding it.
96 Mutex m;

Completed in 3091 milliseconds

1 2 34 5 6 7 8 91011>>