Lines Matching defs:matched
101 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", (*sp)->templ);
139 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", s->templ);
148 InternalMmapVector<Suppression *> matched;
150 suppression_ctx->GetMatched(&matched);
151 if (!matched.size())
154 for (uptr i = 0; i < matched.size(); i++)
155 hit_count += atomic_load_relaxed(&matched[i]->hit_count);
158 for (uptr i = 0; i < matched.size(); i++) {
159 Printf("%d %s:%s\n", atomic_load_relaxed(&matched[i]->hit_count),
160 matched[i]->type, matched[i]->templ);