Searched refs:suppression_ctx (Results 1 - 12 of 12) sorted by relevance

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_suppressions.cc25 static SuppressionContext *suppression_ctx = nullptr; member 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
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_suppressions.cc23 static SuppressionContext *suppression_ctx = nullptr; member in namespace:__asan
37 CHECK_EQ(nullptr, suppression_ctx);
38 suppression_ctx = new (suppression_placeholder) // NOLINT
40 suppression_ctx->ParseFromFile(flags()->suppressions);
42 suppression_ctx->Parse(__asan_default_suppressions());
46 CHECK(suppression_ctx);
49 return suppression_ctx->Match(interceptor_name, kInterceptorName, &s);
53 CHECK(suppression_ctx);
54 return suppression_ctx->HasSuppressionType(kInterceptorViaFunction) ||
55 suppression_ctx
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_suppressions.cpp24 static SuppressionContext *suppression_ctx = nullptr; member in namespace:__asan
38 CHECK_EQ(nullptr, suppression_ctx);
39 suppression_ctx = new (suppression_placeholder)
41 suppression_ctx->ParseFromFile(flags()->suppressions);
43 suppression_ctx->Parse(__asan_default_suppressions());
47 CHECK(suppression_ctx);
50 return suppression_ctx->Match(interceptor_name, kInterceptorName, &s);
54 CHECK(suppression_ctx);
55 return suppression_ctx->HasSuppressionType(kInterceptorViaFunction) ||
56 suppression_ctx
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_suppressions.cc46 static SuppressionContext *suppression_ctx = nullptr; member 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
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_suppressions.cc44 static SuppressionContext *suppression_ctx = nullptr; member in namespace:__tsan
51 CHECK_EQ(nullptr, suppression_ctx);
52 suppression_ctx = new (suppression_placeholder) // NOLINT
54 suppression_ctx->ParseFromFile(flags()->suppressions);
56 suppression_ctx->Parse(__tsan_default_suppressions());
57 suppression_ctx->Parse(std_suppressions);
62 CHECK(suppression_ctx);
63 return suppression_ctx;
103 if (suppression_ctx->Match(info.function, stype, sp) ||
104 suppression_ctx
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_suppressions.cpp45 static SuppressionContext *suppression_ctx = nullptr; member in namespace:__tsan
52 CHECK_EQ(nullptr, suppression_ctx);
53 suppression_ctx = new (suppression_placeholder)
55 suppression_ctx->ParseFromFile(flags()->suppressions);
57 suppression_ctx->Parse(__tsan_default_suppressions());
58 suppression_ctx->Parse(std_suppressions);
63 CHECK(suppression_ctx);
64 return suppression_ctx;
96 if (suppression_ctx->Match(info.function, stype, sp) ||
97 suppression_ctx
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/ubsan/
H A Dubsan_diag.cc389 static SuppressionContext *suppression_ctx = nullptr; variable
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
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
H A Dubsan_diag.cc387 static SuppressionContext *suppression_ctx = nullptr; variable
397 CHECK_EQ(nullptr, suppression_ctx);
398 suppression_ctx = new (suppression_placeholder) // NOLINT
400 suppression_ctx->ParseFromFile(flags()->suppressions);
405 CHECK(suppression_ctx);
407 return suppression_ctx->Match(TypeName, kVptrCheck, &s);
412 CHECK(suppression_ctx);
416 if (!suppression_ctx->HasSuppressionType(SuppType))
420 if (Filename != nullptr && suppression_ctx->Match(Filename, SuppType, &s))
424 if (suppression_ctx
[all...]
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/ubsan/
H A Dubsan_diag.cpp400 static SuppressionContext *suppression_ctx = nullptr; variable
410 CHECK_EQ(nullptr, suppression_ctx);
411 suppression_ctx = new (suppression_placeholder)
413 suppression_ctx->ParseFromFile(flags()->suppressions);
418 CHECK(suppression_ctx);
420 return suppression_ctx->Match(TypeName, kVptrCheck, &s);
425 CHECK(suppression_ctx);
429 if (!suppression_ctx->HasSuppressionType(SuppType))
433 if (Filename != nullptr && suppression_ctx->Match(Filename, SuppType, &s))
437 if (suppression_ctx
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/lsan/
H A Dlsan_common.cc69 static SuppressionContext *suppression_ctx = nullptr; member 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;
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/lsan/
H A Dlsan_common.cc67 static SuppressionContext *suppression_ctx = nullptr; member in namespace:__lsan
85 CHECK_EQ(nullptr, suppression_ctx);
86 suppression_ctx = new (suppression_placeholder) // NOLINT
88 suppression_ctx->ParseFromFile(flags()->suppressions);
90 suppression_ctx->Parse(__lsan_default_suppressions());
91 suppression_ctx->Parse(kStdSuppressions);
95 CHECK(suppression_ctx);
96 return suppression_ctx;
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/lsan/
H A Dlsan_common.cpp96 static LeakSuppressionContext *suppression_ctx = nullptr; member in namespace:__lsan
114 CHECK_EQ(nullptr, suppression_ctx);
115 suppression_ctx = new (suppression_placeholder)
130 CHECK(suppression_ctx);
131 return suppression_ctx;

Completed in 210 milliseconds