Home | History | Annotate | Download | only in rtl

Lines Matching refs:matched

104     VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", (*sp)->templ);
142 VPrintf(2, "ThreadSanitizer: matched suppression '%s'\n", s->templ);
151 InternalMmapVector<Suppression *> matched(1);
153 suppression_ctx->GetMatched(&matched);
154 if (!matched.size())
157 for (uptr i = 0; i < matched.size(); i++)
158 hit_count += atomic_load_relaxed(&matched[i]->hit_count);
159 Printf("ThreadSanitizer: Matched %d suppressions (pid=%d):\n", hit_count,
161 for (uptr i = 0; i < matched.size(); i++) {
162 Printf("%d %s:%s\n", matched[i]->hit_count, matched[i]->type,
163 matched[i]->templ);