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