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

/frameworks/base/include/utils/
H A Dthreads.h228 // Manages the mutex automatically. It'll be locked when Autolock is
229 // constructed and released when Autolock goes out of scope.
230 class Autolock { class in class:android::Mutex
232 inline Autolock(Mutex& mutex) : mLock(mutex) { mLock.lock(); } function in class:android::Mutex::Autolock
233 inline Autolock(Mutex* mutex) : mLock(*mutex) { mLock.lock(); } function in class:android::Mutex::Autolock
234 inline ~Autolock() { mLock.unlock(); }
294 typedef Mutex::Autolock AutoMutex;

Completed in 119 milliseconds