Home
last modified time | relevance | path

Searched refs:AutoThreadMutex (Results 1 – 2 of 2) sorted by relevance

/system/nfc/src/include/
DNfcAdaptation.h73 class AutoThreadMutex {
75 explicit AutoThreadMutex(ThreadMutex& m);
76 virtual ~AutoThreadMutex();
/system/nfc/src/adaptation/
DNfcAdaptation.cc168 AutoThreadMutex a(sLock); in GetInstance()
342 AutoThreadMutex guard(mCondVar); in Initialize()
363 AutoThreadMutex a(sLock); in Finalize()
444 AutoThreadMutex guard(CondVar); in Thread()
890 AutoThreadMutex a(*this); in signal()
903 AutoThreadMutex::AutoThreadMutex(ThreadMutex& m) : mm(m) { mm.lock(); } in AutoThreadMutex() function in AutoThreadMutex
914 AutoThreadMutex::~AutoThreadMutex() { mm.unlock(); } in ~AutoThreadMutex()