Lines Matching full:reading

432 …*pgb_field = x; // expected-warning {{reading variable 'pgb_field' requires holding mutex 'sls_mu2…  in testFoo()
434 …x = *pgb_field; // expected-warning {{reading variable 'pgb_field' requires holding mutex 'sls_mu2… in testFoo()
435 …// expected-warning {{reading the value pointed to by 'pgb_field' requires holding mutex 'sls_mu'}} in testFoo()
436 …(*pgb_field)++; // expected-warning {{reading variable 'pgb_field' requires holding mutex 'sls_mu2… in testFoo()
485 // expected-warning{{reading variable 'sls_guard_var' requires holding any mutex}} in gb_bad_1()
495 // expected-warning {{reading variable 'sls_guardby_var' requires holding mutex 'sls_mu'}} in gb_bad_3()
505 // expected-warning {{reading the value pointed to by 'pgb_gvar' requires holding any mutex}} in gb_bad_5()
515 … // expected-warning {{reading the value pointed to by 'pgb_var' requires holding mutex 'sls_mu'}} in gb_bad_7()
550 // expected-warning {{reading variable 'a' requires holding mutex 'mu'}} in test()
605 // expected-warning{{reading the value pointed to by 'q' requires holding mutex 'b1.mu'}} in late_bad_1()
1333 …res = b1.a_ + b3->b_; // expected-warning {{reading variable 'a_' requires holding mutex 'b1.mu1_'… in func()
1336 *p = i; // expected-warning {{reading variable 'p' requires holding mutex 'mu'}} \ in func()
1338 b1.a_ = res + b3->b_; // expected-warning {{reading variable 'res' requires holding mutex 'mu'}} \ in func()
1341 …b3->b_ = *b1.q; // expected-warning {{reading the value pointed to by 'q' requires holding mutex '… in func()
1343 b1.b_ = res; // expected-warning {{reading variable 'res' requires holding mutex 'mu'}} in func()
1344 x = res; // expected-warning {{reading variable 'res' requires holding mutex 'mu'}} in func()
1611 u->n = 0; // expected-warning {{reading variable 'u' requires holding mutex 'm'}} in DoNaughtyThings()
1612 return t->s->n; // expected-warning {{reading variable 's' requires holding mutex 't->m'}} in DoNaughtyThings()
1628 v.p->f(u); // expected-warning {{reading variable 'p' requires holding mutex 'v.m'}} in f()
2715 int b = a; // expected-warning {{reading variable 'a' requires holding mutex 'getMutexPtr()'}} in test()
3798 // expected-warning {{reading variable 'data_' requires holding mutex 'mu_'}} in test()
3800 // expected-warning {{reading variable 'data_' requires holding mutex 'mu_'}} in test()
3803 // expected-warning {{reading variable 'datap1_' requires holding mutex 'mu_'}} in test()
3805 // expected-warning {{reading variable 'datap1_' requires holding mutex 'mu_'}} in test()
3808 // expected-warning {{reading the value pointed to by 'datap2_' requires holding mutex 'mu_'}} in test()
3810 // expected-warning {{reading the value pointed to by 'datap2_' requires holding mutex 'mu_'}} in test()
3813 // expected-warning {{reading the value pointed to by 'datap2_' requires holding mutex 'mu_'}} in test()
3815 // expected-warning {{reading the value pointed to by 'datap2_' requires holding mutex 'mu_'}} in test()
3834 …*datap1_ = data_; // expected-warning {{reading variable 'datap1_' requires holding mutex 'mu_… in test2()
3835 … // expected-warning {{reading variable 'data_' requires holding mutex 'mu_'}} in test2()
3837 … // expected-warning {{reading variable 'data_' requires holding mutex 'mu_'}} in test2()
3839 … // expected-warning {{reading variable 'datap1_' requires holding mutex 'mu_'}} in test2()
3841 … // expected-warning {{reading the value pointed to by 'datap2_' requires holding mutex 'mu_'}} in test2()
3843 …data_[0] = 0; // expected-warning {{reading variable 'data_' requires holding mutex 'mu_'}} in test2()
3844 …(*datap2_)[0] = 0; // expected-warning {{reading the value pointed to by 'datap2_' requires hol… in test2()
3846 …data_(); // expected-warning {{reading variable 'data_' requires holding mutex 'mu_'}} in test2()
3851 …Data mydat(data_); // expected-warning {{reading variable 'data_' requires holding mutex 'mu_… in test3()
3854 …//showDataCell(data_); // xpected-warning {{reading variable 'data_' requires holding mutex 'mu… in test3()
3855 …//showDataCell(*datap2_); // xpected-warning {{reading the value pointed to by 'datap2_' requires … in test3()
3857 …int a = data_[0]; // expected-warning {{reading variable 'data_' requires holding mutex 'mu_… in test3()
3901 foo.myMethod(); // expected-warning {{reading variable 'foo' requires holding mutex 'mu_'}} in test()
3903 int fa = foo.a; // expected-warning {{reading variable 'foo' requires holding mutex 'mu_'}} in test()
3906 …fa = foop->a; // expected-warning {{reading the value pointed to by 'foop' requires holding… in test()
3909 …fa = (*foop).a; // expected-warning {{reading the value pointed to by 'foop' requires holding… in test()
3914 … foo.c.cellMethod(); // expected-warning {{reading variable 'foo' requires holding mutex 'mu_'}} \ in test()
3915 … // expected-warning {{reading variable 'c' requires holding mutex 'foo.cell_mu_'}} in test()
3919 …foop->c.cellMethod(); // expected-warning {{reading the value pointed to by 'foop' requires holdi… in test()
3920 … // expected-warning {{reading variable 'c' requires holding mutex 'foop->cell_mu_'}} in test()
3924 …(*foop).c.cellMethod(); // expected-warning {{reading the value pointed to by 'foop' requires hol… in test()
3925 … // expected-warning {{reading variable 'c' requires holding mutex 'foop->cell_mu_'}} in test()
4259 …if (*a == 0) doSomething(); // expected-warning {{reading the value pointed to by 'a' require… in test2()
4262 …if (c->a == 0) doSomething(); // expected-warning {{reading the value pointed to by 'c' require… in test2()
4265 …if ((*c).a == 0) doSomething(); // expected-warning {{reading the value pointed to by 'c' require… in test2()
4268 …if (a[0] == 42) doSomething(); // expected-warning {{reading the value pointed to by 'a' requi… in test2()
4270 …if (c[0].a == 42) doSomething(); // expected-warning {{reading the value pointed to by 'c' requi… in test2()
4277 …if (*a == 0) doSomething(); // expected-warning {{reading variable 'a' requires holding mutex… in test3()
4278 …*a = 0; // expected-warning {{reading variable 'a' requires holding mutex… in test3()
4280 …if (c->a == 0) doSomething(); // expected-warning {{reading variable 'c' requires holding mutex… in test3()
4281 …c->a = 0; // expected-warning {{reading variable 'c' requires holding mutex… in test3()
4283 …if ((*c).a == 0) doSomething(); // expected-warning {{reading variable 'c' requires holding mutex… in test3()
4284 …(*c).a = 0; // expected-warning {{reading variable 'c' requires holding mutex… in test3()
4286 …if (a[0] == 42) doSomething(); // expected-warning {{reading variable 'a' requires holding mut… in test3()
4287 …a[0] = 57; // expected-warning {{reading variable 'a' requires holding mut… in test3()
4288 …if (c[0].a == 42) doSomething(); // expected-warning {{reading variable 'c' requires holding mut… in test3()
4289 …c[0].a = 57; // expected-warning {{reading variable 'c' requires holding mut… in test3()
4294 …if (sa[0] == 42) doSomething(); // expected-warning {{reading variable 'sa' requires holding m… in test4()
4296 …if (sc[0].a == 42) doSomething(); // expected-warning {{reading variable 'sc' requires holding m… in test4()
4299 …if (*sa == 42) doSomething(); // expected-warning {{reading variable 'sa' requires holding m… in test4()
4301 …if ((*sc).a == 42) doSomething(); // expected-warning {{reading variable 'sc' requires holding m… in test4()
4303 …if (sc->a == 42) doSomething(); // expected-warning {{reading variable 'sc' requires holding m… in test4()
4349 …sp.get(); // expected-warning {{reading variable 'sp' requires holding mutex … in test2()
4350 …if (*sp == 0) doSomething(); // expected-warning {{reading variable 'sp' requires holding mutex … in test2()
4351 …*sp = 0; // expected-warning {{reading variable 'sp' requires holding mutex … in test2()
4352 …sq->a = 0; // expected-warning {{reading variable 'sq' requires holding mutex … in test2()
4354 …if (sp[0] == 0) doSomething(); // expected-warning {{reading variable 'sp' requires holding mute… in test2()
4355 …sp[0] = 0; // expected-warning {{reading variable 'sp' requires holding mute… in test2()
4356 …if (sq[0].a == 0) doSomething(); // expected-warning {{reading variable 'sq' requires holding mute… in test2()
4357 …sq[0].a = 0; // expected-warning {{reading variable 'sq' requires holding mute… in test2()
4366 …if (*sp == 0) doSomething(); // expected-warning {{reading the value pointed to by 'sp' requires… in test3()
4367 …*sp = 0; // expected-warning {{reading the value pointed to by 'sp' requires… in test3()
4368 …sq->a = 0; // expected-warning {{reading the value pointed to by 'sq' requires… in test3()
4370 …if (sp[0] == 0) doSomething(); // expected-warning {{reading the value pointed to by 'sp' requir… in test3()
4371 …sp[0] = 0; // expected-warning {{reading the value pointed to by 'sp' requir… in test3()
4372 …if (sq[0].a == 0) doSomething(); // expected-warning {{reading the value pointed to by 'sq' requir… in test3()
4373 …sq[0].a = 0; // expected-warning {{reading the value pointed to by 'sq' requir… in test3()
4494 …bool result = (a.val == b.val); // expected-warning {{reading variable 'val' requires holding mu… in compare()
4700 int b = a; // expected-warning {{reading variable 'a' requires holding mutex 'mu'}} in nonref_test()
4705 auto b = a; // expected-warning {{reading variable 'a' requires holding mutex 'mu'}} in auto_test()
4733 …for (int i : cntr) { // expected-warning2 {{reading variable 'cntr' requires holding mutex 'mu'}} in for_test()
4799 … copy(foo); // expected-warning {{reading variable 'foo' requires holding mutex 'mu'}} in test1()
4816 …foo + foo2; // expected-warning {{reading variable 'foo' requires holding mutex 'mu'}… in test1()
4818 …foo / foo2; // expected-warning {{reading variable 'foo' requires holding mutex 'mu'}… in test1()
4820 …foo * foo2; // expected-warning {{reading variable 'foo' requires holding mutex 'mu'}… in test1()
4822 …foo[foo2]; // expected-warning {{reading variable 'foo' requires holding mutex 'mu'}… in test1()
4826 …copy(*foop); // expected-warning {{reading the value pointed to by 'foop' requires hol… in test1()
4833 …copy(*foosp); // expected-warning {{reading the value pointed to by 'foosp' requires h… in test1()
4834 …write1(*foosp); // expected-warning {{reading the value pointed to by 'foosp' requires h… in test1()
4835 …write2(10, *foosp); // expected-warning {{reading the value pointed to by 'foosp' requires h… in test1()
4836 …read1(*foosp); // expected-warning {{reading the value pointed to by 'foosp' requires h… in test1()
4837 …read2(10, *foosp); // expected-warning {{reading the value pointed to by 'foosp' requires h… in test1()
4838 …destroy(mymove(*foosp)); // expected-warning {{reading the value pointed to by 'foosp' requires h… in test1()