HomeSort by relevance Sort by last modified time
    Searched refs:Mutex (Results 51 - 75 of 704) sorted by null

1 23 4 5 6 7 8 91011>>

  /hardware/samsung_slsi/exynos5/libexynosutils/
ExynosMutex.cpp 71 androidMutexType = Mutex::PRIVATE;
74 androidMutexType = Mutex::SHARED;
81 m_mutex = new Mutex(androidMutexType, name);
83 ALOGE("%s::Mutex create fail", __func__);
103 delete ((Mutex *)m_mutex);
125 if (((Mutex *)m_mutex)->lock() != 0) {
148 ((Mutex *)m_mutex)->unlock();
170 ret = ((Mutex *)m_mutex)->tryLock();
188 ExynosMutex *mutex = new ExynosMutex(); local
190 if (mutex->create(type, name) == false)
    [all...]
  /frameworks/av/media/libmedia/
mediametadataretriever.cpp 31 Mutex MediaMetadataRetriever::sServiceLock;
37 Mutex::Autolock lock(sServiceLock);
86 Mutex::Autolock _l(mLock);
99 Mutex::Autolock _l(mLock);
115 Mutex::Autolock _l(mLock);
130 Mutex::Autolock _l(mLock);
141 Mutex::Autolock _l(mLock);
152 Mutex::Autolock _l(mLock);
161 Mutex::Autolock lock(MediaMetadataRetriever::sServiceLock);
168 Mutex::Autolock lock(sServiceLock)
    [all...]
mediaplayer.cpp 80 Mutex::Autolock _l(mLock);
103 Mutex::Autolock _l(mLock);
114 Mutex::Autolock _l(mLock);
193 Mutex::Autolock _l(mLock);
208 Mutex::Autolock lock(mLock);
218 Mutex::Autolock lock(mLock);
229 Mutex::Autolock _l(mLock);
253 Mutex::Autolock _l(mLock);
278 Mutex::Autolock _l(mLock);
285 Mutex::Autolock _l(mLock)
    [all...]
  /frameworks/native/include/utils/
Condition.h 29 #include <utils/Mutex.h>
39 * Condition variables are paired up with mutexes. Lock the mutex,
41 * or unlock the mutex and continue. All threads calling wait() must
42 * use the same mutex for a given Condition.
54 // Wait on the condition variable. Lock the mutex before calling.
55 status_t wait(Mutex& mutex);
57 status_t waitRelative(Mutex& mutex, nsecs_t reltime);
92 inline status_t Condition::wait(Mutex& mutex)
    [all...]
Thread.h 30 #include <utils/Mutex.h>
94 mutable Mutex mLock;
  /hardware/samsung_slsi/exynos5/libcamera2/
SignalDrivenThread.cpp 82 Mutex::Autolock lock(m_signalMutex);
97 Mutex::Autolock lock(m_signalMutex);
103 Mutex::Autolock lock(m_signalMutex);
122 Mutex::Autolock lock(m_signalMutex);
137 Mutex::Autolock lock(m_signalMutex);
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglDisplay.cpp 34 android::Mutex::Autolock mutex(m_lock);
62 android::Mutex::Autolock mutex(m_lock);
71 android::Mutex::Autolock mutex(m_lock);
131 android::Mutex::Autolock mutex(m_lock);
143 android::Mutex::Autolock mutex(m_lock)
    [all...]
  /frameworks/av/media/libstagefright/chromium_http/
ChromiumHTTPDataSource.cpp 62 Mutex::Autolock autoLock(mLock);
108 Mutex::Autolock autoLock(mLock);
123 Mutex::Autolock autoLock(mLock);
133 Mutex::Autolock autoLock(mLock);
155 Mutex::Autolock autoLock(mLock);
161 Mutex::Autolock autoLock(mLock);
219 Mutex::Autolock autoLock(mLock);
230 Mutex::Autolock autoLock(mLock);
256 Mutex::Autolock autoLock(mLock);
267 Mutex::Autolock autoLock(mLock)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
ImagesManager.cpp 64 android::Mutex::Autolock lock(m_imagesLock);
77 android::Mutex::Autolock lock(m_imagesLock);
88 android::Mutex::Autolock lock(m_imagesLock);
102 android::Mutex::Autolock lock(m_imagesLock);
121 android::Mutex::Autolock lock(m_imagesLock);
135 android::Mutex::Autolock lock(m_imagesLock);
ImagesManager.h 61 android::Mutex m_imagesLock;
  /frameworks/base/services/common_time/
common_clock.cpp 43 Mutex::Autolock lock(&lock_);
68 Mutex::Autolock lock(&lock_);
80 Mutex::Autolock lock(&lock_);
98 Mutex::Autolock lock(&lock_);
106 Mutex::Autolock lock(&lock_);
114 Mutex::Autolock lock(&lock_);
common_clock_service.cpp 37 Mutex::Autolock lock(mRegistrationLock);
96 Mutex::Autolock lock(mRegistrationLock);
99 Mutex::Autolock lock(mCallbackLock);
114 Mutex::Autolock lock(mRegistrationLock);
118 Mutex::Autolock lock(mCallbackLock);
134 Mutex::Autolock lock(mRegistrationLock);
137 Mutex::Autolock lock(mCallbackLock);
150 Mutex::Autolock lock(mCallbackLock);
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadingPthreads.cpp 66 static Mutex* atomicallyInitializedStaticMutex;
70 static Mutex& threadMapMutex()
72 DEFINE_STATIC_LOCAL(Mutex, mutex, ());
73 return mutex;
81 atomicallyInitializedStaticMutex = new Mutex;
251 Mutex::Mutex()
262 Mutex::~Mutex()
    [all...]
  /development/tools/emulator/system/camera/fake-pipeline2/
JpegCompressor.h 28 #include "utils/Mutex.h"
65 Mutex mBusyMutex;
69 Mutex mMutex;
  /external/webkit/Source/WebCore/page/
GeolocationPositionCache.h 71 Mutex m_cachedPositionMutex;
75 Mutex m_databaseFileMutex;
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebCookieJar.h 74 WTF::Mutex m_cookieStoreInitializeMutex;
80 mutable WTF::Mutex m_allowCookiesMutex;
  /frameworks/av/media/libstagefright/
chromium_http_stub.cpp 28 static Mutex gLibMutex;
34 Mutex::Autolock autoLock(gLibMutex);
  /frameworks/av/services/camera/libcameraservice/camera2/
CallbackProcessor.h 23 #include <utils/Mutex.h>
56 mutable Mutex mInputMutex;
  /cts/suite/audio_quality/lib/include/
FileUtil.h 62 android::Mutex mWriteLock;
  /development/tools/emulator/system/camera/
PreviewWindow.h 140 Mutex mObjectLock;
  /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);
  /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;
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
LayerContent.h 57 android::Mutex m_drawLock;

Completed in 1286 milliseconds

1 23 4 5 6 7 8 91011>>