Searched refs:bug_type (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/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.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()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_report.cpp | 914 const char *bug_type = "invalid-free"; in ~InvalidFreeReport() local 918 SanitizerToolName, bug_type, untagged_addr, pc, thread->unique_id()); in ~InvalidFreeReport() 921 SanitizerToolName, bug_type, untagged_addr, pc); in ~InvalidFreeReport() 935 ReportErrorSummary(bug_type, stack); in ~InvalidFreeReport() 968 const char *bug_type = "allocation-tail-overwritten"; in ~TailOverwrittenReport() local 970 bug_type, untagged_addr, untagged_addr + orig_size, orig_size); in ~TailOverwrittenReport() 1015 ReportErrorSummary(bug_type, stack); in ~TailOverwrittenReport() 1036 const char *bug_type = "tag-mismatch"; in ~TagMismatchReport() local 1039 Report("ERROR: %s: %s on address %p at pc %p\n", SanitizerToolName, bug_type, in ~TagMismatchReport() 1074 ReportErrorSummary(bug_type, stack); in ~TagMismatchReport()
|