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

/packages/apps/Nfc/nci/jni/
H A DMutex.cpp21 #include "Mutex.h"
29 ** Function: Mutex
36 Mutex::Mutex () function in class:Mutex
42 ALOGE ("Mutex::Mutex: fail init; error=0x%X", res);
49 ** Function: ~Mutex
56 Mutex::~Mutex ()
61 ALOGE ("Mutex
[all...]
H A DMutex.h25 class Mutex class
30 ** Function: Mutex
37 Mutex ();
42 ** Function: ~Mutex
49 ~Mutex ();
101 inline Autolock(Mutex& mutex) : mLock(mutex) { mLock.lock(); }
102 inline Autolock(Mutex* mutex) : mLock(*mutex) { mLock.lock(); }
105 Mutex& mLock;
113 typedef Mutex::Autolock AutoMutex;

Completed in 62 milliseconds