Home | History | Annotate | Download | only in rtl

Lines Matching full:matched

108       DPrintf("ThreadSanitizer: matched suppression '%s'\n", s->templ);
129 DPrintf("ThreadSanitizer: matched suppression '%s'\n", s->templ);
139 InternalMmapVector<Suppression *> matched(1);
140 g_ctx->GetMatched(&matched);
141 if (!matched.size())
144 for (uptr i = 0; i < matched.size(); i++)
145 hit_count += matched[i]->hit_count;
146 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count,
148 for (uptr i = 0; i < matched.size(); i++) {
149 Printf("%d %s:%s\n", matched[i]->hit_count,
150 SuppressionTypeString(matched[i]->type), matched[i]->templ);