Home | History | Annotate | Download | only in tsan

Lines Matching full:expected_race

5689     ExpectedRace *expected_race = G_expected_races_map->GetInfo(addr);
5692 addr, expected_race);
5693 if (expected_race) {
5698 if (expected_race) {
5699 if (G_flags->nacl_untrusted != expected_race->is_nacl_untrusted) {
5701 expected_race->is_nacl_untrusted ? "un" : "");
5704 expected_race->count++;
5923 ExpectedRace *expected_race =
5925 if (expected_race) {
5926 CHECK(expected_race->description);
5927 Report(" Description: \"%s\"\n", expected_race->description);
6728 ExpectedRace expected_race;
6729 expected_race.ptr = ptr;
6730 expected_race.size = 1;
6731 expected_race.count = 0;
6732 expected_race.is_verifiable = !descr ||
6734 expected_race.is_nacl_untrusted = !descr ||
6742 expected_race.description = d;
6745 expected_race.pc = thread->GetCallstackEntry(1);
6746 G_expected_races_map->InsertInfo(ptr, expected_race);