Lines Matching refs:getLock
3211 const Mutex& getLock(const Inner* i);
3213 void lockInner (Inner* i) EXCLUSIVE_LOCK_FUNCTION(getLock(i));
3214 void unlockInner(Inner* i) UNLOCK_FUNCTION(getLock(i));
3215 void foo(Inner* i) EXCLUSIVE_LOCKS_REQUIRED(getLock(i));
3227 const Mutex& Base::getLock(const Inner* i) LOCK_RETURNED(i->lock_) {