Searched defs:Mutex (Results 1 - 1 of 1) sorted by relevance
/system/core/include/utils/ | ||
H A D | Mutex.h | 43 class Mutex { class in namespace:android 50 Mutex(); 51 Mutex(const char* name); 52 Mutex(int type, const char* name = NULL); 53 ~Mutex(); 76 inline Autolock(Mutex& mutex) : mLock(mutex) { mLock.lock(); } 77 inline Autolock(Mutex* mutex) : mLock(*mutex) { mLock.lock(); } 80 Mutex& mLock; 87 Mutex(const Mutex 102 inline Mutex::Mutex() { function in class:android::Mutex 105 inline Mutex::Mutex(__attribute__((unused)) const char* name) { function in class:android::Mutex 108 inline Mutex::Mutex(int type, __attribute__((unused)) const char* name) { function in class:android::Mutex [all...] |
Completed in 107 milliseconds