Home
last modified time | relevance | path

Searched defs:guarded (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/libs/androidfw/include/androidfw/
DMutexGuard.h54 explicit Guarded(const T& guarded) : guarded_(std::in_place, guarded) { in Guarded()
57 explicit Guarded(T&& guarded) : guarded_(std::in_place, std::move(guarded)) { in Guarded()
81 explicit ScopedLock(Guarded<T>& guarded) : lock_(guarded.lock_), guarded_(*guarded.guarded_) { in ScopedLock()