Lines Matching refs:getMu
2406 Mutex* getMu() LOCK_RETURNED(mu_);
2410 static Mutex* getMu(Foo* f) LOCK_RETURNED(f->mu_);
2423 f1->getMu()->Lock(); in test1()
2431 Foo::getMu(f2)->Lock(); in test1()
2433 Foo::getMu(f2)->Unlock(); in test1()
2437 f1->getMu()->Unlock(); in test1()
2441 Mutex* getFooMu(Foo* f) LOCK_RETURNED(Foo::getMu(f));
2445 int b GUARDED_BY(getMu());
2446 void bar() EXCLUSIVE_LOCKS_REQUIRED(getMu());
2447 void bar2(Bar* g) EXCLUSIVE_LOCKS_REQUIRED(getMu(this), g->getMu());
2449 static void sbar(Bar* g) EXCLUSIVE_LOCKS_REQUIRED(g->getMu());
2465 b1->getMu()->Lock(); in test2()
2473 b2->getMu()->Lock(); in test2()
2476 b2->getMu()->Unlock(); in test2()
2481 b1->getMu()->Unlock(); in test2()
4444 int a GUARDED_BY(getMu());
4446 Mutex* getMu() LOCK_RETURNED("");