Searched defs:Mutex (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/libs/utils/
H A DThreads.cpp293 * Mutex class
299 #pragma mark Mutex
307 Mutex::Mutex() function in class:android::Mutex
312 Mutex::Mutex(const char* name) function in class:android::Mutex
318 void Mutex::_init()
325 Mutex::~Mutex()
330 status_t Mutex
[all...]
/frameworks/base/include/utils/
H A Dthreads.h185 class Mutex { class in namespace:android
187 Mutex();
188 Mutex(const char* name);
189 ~Mutex();
202 inline Autolock(Mutex& mutex) : mpMutex(&mutex) { mutex.lock(); }
203 inline Autolock(Mutex* mutex) : mpMutex(mutex) { mutex->lock(); }
206 Mutex* mpMutex;
213 Mutex(const Mutex&);
214 Mutex
[all...]

Completed in 4 milliseconds