Lines Matching refs:mu_
1300 Mutex mu_; member in FunctionDefinitionParseTest::Foo
1308 Mutex mu_; member in FunctionDefinitionParseTest::Bar
1312 void Foo::foo1() EXCLUSIVE_LOCKS_REQUIRED(mu_) { } in foo1()
1313 void Foo::foo2(Foo *f) EXCLUSIVE_LOCKS_REQUIRED(f->mu_) { } in foo2()
1316 void Bar<T>::bar() EXCLUSIVE_LOCKS_REQUIRED(mu_) { } in bar()
1318 void baz(Foo *f) EXCLUSIVE_LOCKS_REQUIRED(f->mu_) { } in baz()
1327 int GUARDED_BY(mu_) a;
1328 int GUARDED_BY(mu_) b, c;
1331 Mutex mu_; member in TestMultiDecl::Foo
1366 Mutex mu_; member in PointerToMemberTest::Graph
1368 static Mutex* get_static_mu() LOCK_RETURNED(&Graph::mu_);
1373 void foo() EXCLUSIVE_LOCKS_REQUIRED(&Graph::mu_);
1374 int a GUARDED_BY(&Graph::mu_);
1399 Mutex mu_; member in SmartPointerTest::MyClass
1403 smart_ptr<int> a PT_GUARDED_BY(mu_);