Searched refs:bug_type (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_report.cpp423 const char *bug_type = "invalid-free"; local
424 Report("ERROR: %s: %s on address %p at pc %p\n", SanitizerToolName, bug_type,
436 ReportErrorSummary(bug_type, stack);
446 const char *bug_type = "allocation-tail-overwritten"; local
448 bug_type, untagged_addr, untagged_addr + orig_size, orig_size);
495 ReportErrorSummary(bug_type, stack);
508 const char *bug_type = "tag-mismatch"; local
510 Report("ERROR: %s: %s on address %p at pc %p\n", SanitizerToolName, bug_type,
543 ReportErrorSummary(bug_type, stack);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_descriptions.h158 void Print(const char *bug_type = "") const;
167 bool DescribeAddressIfGlobal(uptr addr, uptr access_size, const char *bug_type);
171 // bug_type is optional and is used for checking if we're reporting an
176 // may take access_size and bug_type parameters if needed.
178 const char *bug_type = "");
H A Dasan_descriptions.cpp313 const char *bug_type) {
317 descr.Print(bug_type);
325 void GlobalAddressDescription::Print(const char *bug_type) const {
328 if (bug_type &&
329 0 == internal_strcmp(bug_type, "initialization-order-fiasco") &&
471 const char *bug_type) {
480 global_descr.Print(bug_type);
312 DescribeAddressIfGlobal(uptr addr, uptr access_size, const char *bug_type) argument
H A Dasan_errors.h292 char bug_type[100]; local
293 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function);
295 scariness.Scare(10, bug_type);
H A Dasan_errors.cpp295 char bug_type[100]; local
296 internal_snprintf(bug_type, sizeof(bug_type), "%s-param-overlap", function);
301 bug_type, addr1_description.Address(),
309 ReportErrorSummary(bug_type, stack);

Completed in 88 milliseconds