Home
last modified time | relevance | path

Searched refs:bug_type (Results 1 – 15 of 15) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libsanitizer/hwasan/
H A Dhwasan_report.cpp582 const char *bug_type = "invalid-free"; in ReportInvalidFree() local
586 SanitizerToolName, bug_type, untagged_addr, pc, thread->unique_id()); in ReportInvalidFree()
589 SanitizerToolName, bug_type, untagged_addr, pc); in ReportInvalidFree()
603 ReportErrorSummary(bug_type, stack); in ReportInvalidFree()
622 const char *bug_type = "allocation-tail-overwritten"; in ReportTailOverwritten() local
624 bug_type, untagged_addr, untagged_addr + orig_size, orig_size); in ReportTailOverwritten()
676 ReportErrorSummary(bug_type, stack); in ReportTailOverwritten()
688 const char *bug_type = "tag-mismatch"; in ReportTagMismatch() local
691 Report("ERROR: %s: %s on address %p at pc %p\n", SanitizerToolName, bug_type, in ReportTagMismatch()
745 ReportErrorSummary(bug_type, stack); in ReportTagMismatch()
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_descriptions.cc312 const char *bug_type) { in DescribeAddressIfGlobal() argument
316 descr.Print(bug_type); in DescribeAddressIfGlobal()
324 void GlobalAddressDescription::Print(const char *bug_type) const { in Print()
327 if (bug_type && in Print()
328 0 == internal_strcmp(bug_type, "initialization-order-fiasco") && in Print()
470 const char *bug_type) { in PrintAddressDescription() argument
479 global_descr.Print(bug_type); in PrintAddressDescription()
H A Dasan_descriptions.h157 void Print(const char *bug_type = "") const;
166 bool DescribeAddressIfGlobal(uptr addr, uptr access_size, const char *bug_type);
177 const char *bug_type = "");
H A Dasan_errors.cc280 char bug_type[100]; in Print() local
281 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function); in Print()
286 bug_type, addr1_description.Address(), in Print()
294 ReportErrorSummary(bug_type, stack); in Print()
H A Dasan_errors.h275 char bug_type[100]; in ErrorStringFunctionMemoryRangesOverlap() local
276 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function); in ErrorStringFunctionMemoryRangesOverlap()
278 scariness.Scare(10, bug_type); in ErrorStringFunctionMemoryRangesOverlap()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_descriptions.cc314 const char *bug_type) { in DescribeAddressIfGlobal() argument
318 descr.Print(bug_type); in DescribeAddressIfGlobal()
326 void GlobalAddressDescription::Print(const char *bug_type) const { in Print()
329 if (bug_type && in Print()
330 0 == internal_strcmp(bug_type, "initialization-order-fiasco") && in Print()
472 const char *bug_type) { in PrintAddressDescription() argument
481 global_descr.Print(bug_type); in PrintAddressDescription()
H A Dasan_descriptions.h159 void Print(const char *bug_type = "") const;
168 bool DescribeAddressIfGlobal(uptr addr, uptr access_size, const char *bug_type);
179 const char *bug_type = "");
H A Dasan_errors.cc282 char bug_type[100]; in Print() local
283 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function); in Print()
288 bug_type, addr1_description.Address(), in Print()
296 ReportErrorSummary(bug_type, stack); in Print()
H A Dasan_errors.h277 char bug_type[100]; in ErrorStringFunctionMemoryRangesOverlap() local
278 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function); in ErrorStringFunctionMemoryRangesOverlap()
280 scariness.Scare(10, bug_type); in ErrorStringFunctionMemoryRangesOverlap()
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_descriptions.cpp312 const char *bug_type) { in DescribeAddressIfGlobal() argument
316 descr.Print(bug_type); in DescribeAddressIfGlobal()
325 void GlobalAddressDescription::Print(const char *bug_type) const { in Print()
328 if (bug_type && in Print()
329 0 == internal_strcmp(bug_type, "initialization-order-fiasco") && in Print()
477 const char *bug_type) { in PrintAddressDescription() argument
486 global_descr.Print(bug_type); in PrintAddressDescription()
H A Dasan_descriptions.h165 void Print(const char *bug_type = "") const;
174 bool DescribeAddressIfGlobal(uptr addr, uptr access_size, const char *bug_type);
185 const char *bug_type = "");
H A Dasan_errors.cpp293 char bug_type[100]; in Print() local
294 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function); in Print()
299 bug_type, (void *)addr1_description.Address(), in Print()
308 ReportErrorSummary(bug_type, stack); in Print()
H A Dasan_errors.h292 char bug_type[100]; in ErrorStringFunctionMemoryRangesOverlap() local
293 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function); in ErrorStringFunctionMemoryRangesOverlap()
295 scariness.Scare(10, bug_type); in ErrorStringFunctionMemoryRangesOverlap()
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/
H A Dreport.py149 for bug_type in types.values():
160 | </tr>""", indent).format(**bug_type))
478 bug_type = bug['bug_type']
480 current_type = current_category.get(bug_type, {
481 'bug_type': bug_type,
486 current_category.update({bug_type: current_type})
/netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build/bin/
H A Dscan-build712 my $bug_type = ($row->[2]);
714 my $key = "$bug_category:$bug_type";
716 if (!defined $Totals{$key}) { $Totals{$key} = [1,$bug_category,$bug_type]; }