Lines Matching refs:mu_
1288 Mutex mu_; member in FunctionDefinitionParseTest::Foo
1296 Mutex mu_; member in FunctionDefinitionParseTest::Bar
1300 void Foo::foo1() EXCLUSIVE_LOCKS_REQUIRED(mu_) { } in foo1()
1301 void Foo::foo2(Foo *f) EXCLUSIVE_LOCKS_REQUIRED(f->mu_) { } in foo2()
1304 void Bar<T>::bar() EXCLUSIVE_LOCKS_REQUIRED(mu_) { } in bar()
1306 void baz(Foo *f) EXCLUSIVE_LOCKS_REQUIRED(f->mu_) { } in baz()
1315 int GUARDED_BY(mu_) a;
1316 int GUARDED_BY(mu_) b, c;
1319 Mutex mu_; member in TestMultiDecl::Foo
1354 Mutex mu_; member in PointerToMemberTest::Graph
1356 static Mutex* get_static_mu() LOCK_RETURNED(&Graph::mu_);
1361 void foo() EXCLUSIVE_LOCKS_REQUIRED(&Graph::mu_);
1362 int a GUARDED_BY(&Graph::mu_);
1387 Mutex mu_; member in SmartPointerTest::MyClass
1391 smart_ptr<int> a PT_GUARDED_BY(mu_);