Lines Matching refs:foop
3841 Foo* foop PT_GUARDED_BY(mu_);
3849 fa = foop->a; // expected-warning {{reading the value pointed to by 'foop' requires holding mutex 'mu_'}}
3850 foop->a = fa; // expected-warning {{writing the value pointed to by 'foop' requires holding mutex 'mu_' exclusively}}
3852 fa = (*foop).a; // expected-warning {{reading the value pointed to by 'foop' requires holding mutex 'mu_'}}
3853 (*foop).a = fa; // expected-warning {{writing the value pointed to by 'foop' requires holding mutex 'mu_' exclusively}}
3860 foop->c = Cell(0); // expected-warning {{writing the value pointed to by 'foop' requires holding mutex 'mu_'}} \
3861 // expected-warning {{writing variable 'c' requires holding mutex 'foop->cell_mu_' exclusively}}
3862 foop->c.cellMethod(); // expected-warning {{reading the value pointed to by 'foop' requires holding mutex 'mu_'}} \
3863 // expected-warning {{reading variable 'c' requires holding mutex 'foop->cell_mu_'}}
3865 (*foop).c = Cell(0); // expected-warning {{writing the value pointed to by 'foop' requires holding mutex 'mu_'}} \
3866 // expected-warning {{writing variable 'c' requires holding mutex 'foop->cell_mu_' exclusively}}
3867 (*foop).c.cellMethod(); // expected-warning {{reading the value pointed to by 'foop' requires holding mutex 'mu_'}} \
3868 // expected-warning {{reading variable 'c' requires holding mutex 'foop->cell_mu_'}}