Home
last modified time | relevance | path

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

/system/nfc/src/include/
DNfcAdaptation.h75 class AutoThreadMutex {
77 explicit AutoThreadMutex(ThreadMutex& m);
78 virtual ~AutoThreadMutex();
/system/nfc/src/adaptation/
DNfcAdaptation.cc194 AutoThreadMutex a(sLock); in GetInstance()
368 AutoThreadMutex guard(mCondVar); in Initialize()
389 AutoThreadMutex a(sLock); in Finalize()
473 AutoThreadMutex guard(CondVar); in Thread()
922 AutoThreadMutex a(*this); in signal()
935 AutoThreadMutex::AutoThreadMutex(ThreadMutex& m) : mm(m) { mm.lock(); } in AutoThreadMutex() function in AutoThreadMutex
946 AutoThreadMutex::~AutoThreadMutex() { mm.unlock(); } in ~AutoThreadMutex()