| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ | 
| asan_suppressions.cc | 25 static SuppressionContext *suppression_ctx = nullptr;  variable in namespace:__asan 39   CHECK_EQ(nullptr, suppression_ctx);
 40   suppression_ctx = new (suppression_placeholder)  // NOLINT
 42   suppression_ctx->ParseFromFile(flags()->suppressions);
 44     suppression_ctx->Parse(__asan_default_suppressions());
 48   CHECK(suppression_ctx);
 51   return suppression_ctx->Match(interceptor_name, kInterceptorName, &s);
 55   CHECK(suppression_ctx);
 56   return suppression_ctx->HasSuppressionType(kInterceptorViaFunction) ||
 57          suppression_ctx->HasSuppressionType(kInterceptorViaLibrary)
 [all...]
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ | 
| tsan_suppressions.cc | 46 static SuppressionContext *suppression_ctx = nullptr;  variable in namespace:__tsan 53   CHECK_EQ(nullptr, suppression_ctx);
 54   suppression_ctx = new (suppression_placeholder) // NOLINT
 56   suppression_ctx->ParseFromFile(flags()->suppressions);
 58   suppression_ctx->Parse(__tsan_default_suppressions());
 59   suppression_ctx->Parse(std_suppressions);
 64   CHECK(suppression_ctx);
 65   return suppression_ctx;
 105   if (suppression_ctx->Match(info.function, stype, sp) ||
 106       suppression_ctx->Match(info.file, stype, sp) |
 [all...]
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ | 
| ubsan_diag.cc | 389 static SuppressionContext *suppression_ctx = nullptr;  variable in typeref:typename:SuppressionContext * 399   CHECK_EQ(nullptr, suppression_ctx);
 400   suppression_ctx = new (suppression_placeholder) // NOLINT
 402   suppression_ctx->ParseFromFile(flags()->suppressions);
 407   CHECK(suppression_ctx);
 409   return suppression_ctx->Match(TypeName, kVptrCheck, &s);
 414   CHECK(suppression_ctx);
 418   if (!suppression_ctx->HasSuppressionType(SuppType))
 422   if (Filename != nullptr && suppression_ctx->Match(Filename, SuppType, &s))
 426     if (suppression_ctx->Match(Module, SuppType, &s)
 [all...]
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/lsan/ | 
| lsan_common.cc | 69 static SuppressionContext *suppression_ctx = nullptr;  variable in namespace:__lsan 87   CHECK_EQ(nullptr, suppression_ctx);
 88   suppression_ctx = new (suppression_placeholder) // NOLINT
 90   suppression_ctx->ParseFromFile(flags()->suppressions);
 92     suppression_ctx->Parse(__lsan_default_suppressions());
 93   suppression_ctx->Parse(kStdSuppressions);
 97   CHECK(suppression_ctx);
 98   return suppression_ctx;
 
 |