Searched refs:bug_type (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/ |
| H A D | hwasan_report.cpp | 591 const char *bug_type = "invalid-free"; in ReportInvalidFree() local 595 SanitizerToolName, bug_type, untagged_addr, pc, thread->unique_id()); in ReportInvalidFree() 598 SanitizerToolName, bug_type, untagged_addr, pc); in ReportInvalidFree() 613 ReportErrorSummary(bug_type, stack); in ReportInvalidFree() 632 const char *bug_type = "allocation-tail-overwritten"; in ReportTailOverwritten() local 634 bug_type, untagged_addr, untagged_addr + orig_size, orig_size); in ReportTailOverwritten() 687 ReportErrorSummary(bug_type, stack); in ReportTailOverwritten() 699 const char *bug_type = "tag-mismatch"; in ReportTagMismatch() local 702 Report("ERROR: %s: %s on address %p at pc %p\n", SanitizerToolName, bug_type, in ReportTagMismatch() 757 ReportErrorSummary(bug_type, stack); in ReportTagMismatch()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/asan/ |
| H A D | asan_descriptions.cpp | 312 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 D | asan_descriptions.h | 165 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 D | asan_errors.cpp | 291 char bug_type[100]; in Print() local 292 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function); in Print() 297 bug_type, (void *)addr1_description.Address(), in Print() 306 ReportErrorSummary(bug_type, stack); in Print()
|
| H A D | asan_errors.h | 292 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()
|
| /openbsd-src/gnu/llvm/clang/tools/scan-build-py/lib/libscanbuild/ |
| H A D | report.py | 149 for bug_type in types.values(): 160 | </tr>""", indent).format(**bug_type)) 479 bug_type = bug['bug_type'] 481 current_type = current_category.get(bug_type, { 482 'bug_type': bug_type, 487 current_category.update({bug_type: current_type})
|
| /openbsd-src/gnu/llvm/clang/tools/scan-build/bin/ |
| H A D | scan-build | 674 my $bug_type = ($row->[2]); 676 my $key = "$bug_category:$bug_type"; 678 if (!defined $Totals{$key}) { $Totals{$key} = [1,$bug_category,$bug_type]; }
|