HomeSort by relevance Sort by last modified time
    Searched refs:Mutex (Results 1 - 25 of 279) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/common/
mutex.h 10 // File: mutex.h
12 // Lightweight C++ wrapper for umtx_ C mutex functions
31 // should instantiate a Mutex object while doing so. You should make your own
32 // private mutex where possible.
49 // Mutex mutex(&myMutex); // or no args for the global lock
51 // // When 'mutex' goes out of scope and gets destroyed here, the lock is released
54 // Note: Do NOT use the form 'Mutex mutex();' as that merely forward-declares a function
55 // returning a Mutex. This is a common mistake which silently slips through th
    [all...]
mutex.cpp 12 /* If UCONFIG_NO_SERVICE, then there is no invocation of Mutex elsewhere in
14 #include "mutex.h"
15 static Mutex *aMutex = 0;
servnotf.cpp 30 Mutex lmx(&notifyLock);
48 Mutex lmx(&notifyLock);
81 Mutex lmx(&notifyLock);
104 Mutex lmx(&notifyLock);
  /external/webkit/JavaScriptCore/wtf/
ThreadingNone.cpp 45 Mutex::Mutex() { }
46 Mutex::~Mutex() { }
47 void Mutex::lock() { }
48 bool Mutex::tryLock() { return false; }
49 void Mutex::unlock() { }
53 void ThreadCondition::wait(Mutex&) { }
54 bool ThreadCondition::timedWait(Mutex&, double) { return false; }
MainThread.h 35 class Mutex;
52 Mutex& mainThreadFunctionQueueMutex();
dtoa.h 25 class Mutex;
30 extern WTF::Mutex* s_dtoaP5Mutex;
HashTable.cpp 37 static Mutex& hashTableStatsMutex()
39 AtomicallyInitializedStatic(Mutex&, mutex = *new Mutex);
40 return mutex;
46 // if any thread was killed while holding the mutex.
ThreadingPthreads.cpp 58 static Mutex* atomicallyInitializedStaticMutex;
66 static Mutex& threadMapMutex()
68 DEFINE_STATIC_LOCAL(Mutex, mutex, ());
69 return mutex;
75 atomicallyInitializedStaticMutex = new Mutex;
252 Mutex::Mutex()
257 Mutex::~Mutex()
    [all...]
  /frameworks/base/libs/surfaceflinger/
Barrier.h 36 Mutex::Autolock _l(lock);
41 Mutex::Autolock _l(lock);
45 Mutex::Autolock _l(lock);
52 mutable Mutex lock;
  /frameworks/base/include/private/binder/
Static.h 31 extern Mutex gProcessMutex;
35 extern Mutex gDefaultServiceManagerLock;
  /frameworks/base/libs/binder/
Static.cpp 29 Mutex gProcessMutex;
49 Mutex gDefaultServiceManagerLock;
  /frameworks/base/include/utils/
threads.h 204 * Simple mutex class. The implementation is system-dependent.
206 * The mutex must be unlocked by the thread that locked it. They are not
209 class Mutex {
216 Mutex();
217 Mutex(const char* name);
218 Mutex(int type, const char* name = NULL);
219 ~Mutex();
221 // lock or unlock the mutex
228 // Manages the mutex automatically. It'll be locked when Autolock is
232 inline Autolock(Mutex& mutex) : mLock(mutex) { mLock.lock();
    [all...]
Singleton.h 32 Mutex::Autolock _l(sLock);
48 static Mutex sLock;
61 template< class TYPE > Mutex Singleton< TYPE >::sLock; \
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
AbstractQueuedSynchronizerTest.java 26 * A simple mutex class, adapted from the
33 static class Mutex extends AbstractQueuedSynchronizer {
72 final Mutex sync;
73 InterruptibleSyncRunnable(Mutex l) { sync = l; }
87 final Mutex sync;
88 InterruptedSyncRunnable(Mutex l) { sync = l; }
101 Mutex rl = new Mutex();
109 Mutex rl = new Mutex();
    [all...]
  /frameworks/base/media/libmediaplayerservice/
MediaRecorderClient.cpp 65 Mutex::Autolock lock(mLock);
76 Mutex::Autolock lock(mLock);
90 Mutex::Autolock lock(mLock);
104 Mutex::Autolock lock(mLock);
115 Mutex::Autolock lock(mLock);
126 Mutex::Autolock lock(mLock);
137 Mutex::Autolock lock(mLock);
148 Mutex::Autolock lock(mLock);
159 Mutex::Autolock lock(mLock);
170 Mutex::Autolock lock(mLock)
    [all...]
MidiMetadataRetriever.h 42 Mutex mLock;
  /external/webkit/JavaScriptCore/wtf/gtk/
ThreadingGtk.cpp 45 static Mutex* atomicallyInitializedStaticMutex;
49 static Mutex& threadMapMutex()
51 static Mutex mutex; local
52 return mutex;
62 atomicallyInitializedStaticMutex = new Mutex;
176 Mutex::Mutex()
181 Mutex::~Mutex()
    [all...]
  /external/webkit/JavaScriptCore/wtf/qt/
ThreadingQt.cpp 85 static Mutex* atomicallyInitializedStaticMutex;
89 static Mutex& threadMapMutex()
91 static Mutex mutex; local
92 return mutex;
146 atomicallyInitializedStaticMutex = new Mutex;
223 Mutex::Mutex()
228 Mutex::~Mutex()
    [all...]
  /frameworks/base/media/libmedia/
mediametadataretriever.cpp 31 Mutex MediaMetadataRetriever::sServiceLock;
37 Mutex::Autolock lock(sServiceLock);
86 Mutex::Autolock _l(mLock);
98 Mutex::Autolock _l(mLock);
114 Mutex::Autolock _l(mLock);
129 Mutex::Autolock _l(mLock);
140 Mutex::Autolock _l(mLock);
151 Mutex::Autolock _l(mLock);
162 Mutex::Autolock _l(mLock);
173 Mutex::Autolock _l(mLock)
    [all...]
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);
  /frameworks/base/opengl/libagl/
TokenManager.cpp 37 Mutex::Autolock _l(mLock);
45 Mutex::Autolock _l(mLock);
56 Mutex::Autolock _l(mLock);
  /frameworks/base/cmds/runtime/
SignalHandler.h 72 mutable Mutex mLock;
129 static Mutex mInstanceLock;
  /external/webkit/JavaScriptCore/runtime/
InitializeThreading.cpp 54 s_dtoaP5Mutex = new Mutex;
  /external/webkit/WebCore/storage/chromium/
QuotaTracker.h 58 Mutex m_dataGuard;
  /frameworks/base/include/media/stagefright/
MediaBufferGroup.h 47 Mutex mLock;

Completed in 243 milliseconds

1 2 3 4 5 6 7 8 91011>>