Lines Matching refs:matched
136 DPrintf("ThreadSanitizer: matched suppression '%s'\n", s->templ);
157 DPrintf("ThreadSanitizer: matched suppression '%s'\n", s->templ);
167 InternalMmapVector<Suppression *> matched(1);
168 g_ctx->GetMatched(&matched);
169 if (!matched.size())
172 for (uptr i = 0; i < matched.size(); i++)
173 hit_count += matched[i]->hit_count;
174 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count,
176 for (uptr i = 0; i < matched.size(); i++) {
177 Printf("%d %s:%s\n", matched[i]->hit_count,
178 SuppressionTypeString(matched[i]->type), matched[i]->templ);