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

/frameworks/base/libs/rs/
H A DrsMutex.cpp23 Mutex::Mutex() { function in class:Mutex
26 Mutex::~Mutex() {
30 bool Mutex::init() {
33 LOGE("Mutex::Mutex init failure");
39 bool Mutex::lock() {
43 LOGE("Mutex: error %i locking.", status);
49 bool Mutex
[all...]
H A DrsMutex.h26 class Mutex { class in namespace:android::renderscript
28 Mutex();
29 ~Mutex();
/frameworks/ex/variablespeed/jni/
H A Dno_synchronization.h29 class Mutex { class
31 Mutex() {} function in class:Mutex
32 virtual ~Mutex() {}
37 DISALLOW_COPY_AND_ASSIGN(Mutex);
42 explicit MutexLock(Mutex* mu) : mu_(mu) {}
46 Mutex* const mu_;
/frameworks/base/include/utils/
H A Dthreads.h221 class Mutex { class in namespace:android
228 Mutex();
229 Mutex(const char* name);
230 Mutex(int type, const char* name = NULL);
231 ~Mutex();
244 inline Autolock(Mutex& mutex) : mLock(mutex) { mLock.lock(); }
245 inline Autolock(Mutex* mutex) : mLock(*mutex) { mLock.lock(); }
248 Mutex& mLock;
255 Mutex(const Mutex
268 inline Mutex::Mutex() { function in class:android::Mutex
271 inline Mutex::Mutex(const char* name) { function in class:android::Mutex
274 inline Mutex::Mutex(int type, const char* name) { function in class:android::Mutex
[all...]

Completed in 417 milliseconds