Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/hwasan/
H A Dhwasan_report.cc310 const char *bug_type = "invalid-free"; in ReportInvalidFree() local
311 Report("ERROR: %s: %s on address %p at pc %p\n", SanitizerToolName, bug_type, in ReportInvalidFree()
323 ReportErrorSummary(bug_type, stack); in ReportInvalidFree()
332 const char *bug_type = "alocation-tail-overwritten"; in ReportTailOverwritten() local
334 bug_type, untagged_addr, untagged_addr + orig_size, orig_size); in ReportTailOverwritten()
383 ReportErrorSummary(bug_type, stack); in ReportTailOverwritten()
396 const char *bug_type = "tag-mismatch"; in ReportTagMismatch() local
398 Report("ERROR: %s: %s on address %p at pc %p\n", SanitizerToolName, bug_type, in ReportTagMismatch()
420 ReportErrorSummary(bug_type, stack); in ReportTagMismatch()
/freebsd-12.1/contrib/compiler-rt/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()