HomeSort by relevance Sort by last modified time
    Searched refs:Mutex (Results 101 - 125 of 949) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/suite/audio_quality/lib/include/
FileUtil.h 62 android::Mutex mWriteLock;
  /device/generic/goldfish/camera/
PreviewWindow.h 140 Mutex mObjectLock;
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
QuotaTracker.h 61 Mutex m_dataGuard;
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioDSPKernelProcessor.h 73 mutable Mutex m_processLock;
HRTFDatabaseLoader.h 85 Mutex m_threadLock;
  /external/chromium_org/third_party/icu/source/common/
servnotf.cpp 30 Mutex lmx(&notifyLock);
48 Mutex lmx(&notifyLock);
81 Mutex lmx(&notifyLock);
104 Mutex lmx(&notifyLock);
mutex.cpp 8 * file name: mutex.cpp
15 #include "mutex.h"
32 Mutex mutex; local
58 Mutex mutex; local
84 /* If UCONFIG_NO_SERVICE, then there is no invocation of Mutex elsewhere in
86 static Mutex *aMutex = 0;
  /external/chromium_org/third_party/re2/util/
atomicops.h 38 #include "util/mutex.h"
42 // any mutex implementation must have
49 re2::Mutex mu;
  /external/compiler-rt/lib/tsan/benchmarks/
vts_many_threads_bench.cc 31 class __attribute__((aligned(64))) Mutex {
33 Mutex() { pthread_mutex_init(&m_, NULL); }
34 ~Mutex() { pthread_mutex_destroy(&m_); }
43 Mutex mutexes[kNumMutexes];
  /external/icu4c/common/
servnotf.cpp 31 Mutex lmx(&notifyLock);
48 Mutex lmx(&notifyLock);
81 Mutex lmx(&notifyLock);
104 Mutex lmx(&notifyLock);
mutex.cpp 8 * file name: mutex.cpp
15 #include "mutex.h"
41 Mutex mutex; local
102 Mutex mutex; local
133 /* If UCONFIG_NO_SERVICE, then there is no invocation of Mutex elsewhere in
135 static Mutex *aMutex = 0;
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
SyncEvent.h 21 * Synchronize two or more threads using a condition variable and a mutex.
26 #include "Mutex.h"
124 Mutex mMutex;
  /external/regex-re2/util/
atomicops.h 38 #include "util/mutex.h"
42 // any mutex implementation must have
49 re2::Mutex mu;
  /frameworks/av/include/common_time/
local_clock.h 42 static Mutex dev_lock_;
  /frameworks/av/include/media/stagefright/
MediaBufferGroup.h 47 Mutex mLock;
  /frameworks/av/media/common_time/
cc_helper.cpp 25 Mutex CCHelper::lock_;
61 Mutex::Autolock lock(&lock_);
67 Mutex::Autolock lock(&lock_);
97 Mutex::Autolock lock(&lock_); \
  /frameworks/base/libs/hwui/thread/
TaskManager.cpp 84 Mutex::Autolock l(mLock);
102 Mutex::Autolock l(mLock);
110 Mutex::Autolock l(mLock);
116 Mutex::Autolock l(mLock);
  /frameworks/native/include/private/gui/
ComposerService.h 46 Mutex mLock;
  /frameworks/native/opengl/libagl/
TokenManager.h 45 mutable Mutex mLock;
  /packages/apps/Nfc/nci/jni/
SyncEvent.h 18 * Synchronize two or more threads using a condition variable and a mutex.
22 #include "Mutex.h"
120 Mutex mMutex;
  /external/chromium_org/third_party/WebKit/Source/heap/
ThreadState.cpp 41 static Mutex& threadAttachMutex()
43 AtomicallyInitializedStatic(Mutex&, mutex = *new Mutex);
44 return mutex;
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_mutex.cc 24 Mutex m;
42 Mutex m(Mutex::Spin);
60 Mutex m(Mutex::RW);
95 TEST(ThreadSanitizer, Mutex) {
96 Mutex m;
112 Mutex m(Mutex::Spin);
128 Mutex m(Mutex::RW)
    [all...]
  /external/v8/test/cctest/
test-lock.cc 18 Mutex* mutex = OS::CreateMutex(); local
19 CHECK_EQ(0, mutex->Lock()); // acquire the lock with the right token
20 CHECK_EQ(0, mutex->Unlock()); // can unlock with the right token
21 delete mutex;
26 Mutex* mutex = OS::CreateMutex(); local
27 CHECK_EQ(0, mutex->Lock());
28 CHECK_EQ(0, mutex->Unlock());
29 delete mutex;
34 Mutex* mutex = OS::CreateMutex(); local
    [all...]
test-platform-linux.cc 25 static void LoopIncrement(Mutex* mutex, int rem) {
30 CHECK_EQ(0, mutex->Lock());
32 CHECK_EQ(0, mutex->Unlock());
36 CHECK_EQ(0, mutex->Lock());
41 CHECK_EQ(0, mutex->Unlock());
48 LoopIncrement(static_cast<Mutex*>(arg), 0);
57 Mutex* mutex = OS::CreateMutex(); local
61 mutex);
    [all...]
test-platform-nullos.cc 25 static void LoopIncrement(Mutex* mutex, int rem) {
30 CHECK_EQ(0, mutex->Lock());
32 CHECK_EQ(0, mutex->Unlock());
36 CHECK_EQ(0, mutex->Lock());
41 CHECK_EQ(0, mutex->Unlock());
48 LoopIncrement(static_cast<Mutex*>(arg), 0);
57 Mutex* mutex = OS::CreateMutex(); local
61 mutex);
    [all...]

Completed in 1195 milliseconds

1 2 3 45 6 7 8 91011>>