Home | History | Annotate | Download | only in asan

Lines Matching refs:report

203   Report("%s", str.data());
493 // Report the number of stack objects.
496 // Report all objects in this frame.
629 // immediately after printing error report.
632 explicit ScopedInErrorReport(ReportData *report = nullptr,
637 StartReporting(report);
647 // Fail simple to avoid deadlocks in Report().
649 // Can't use Report() here because of potential deadlocks
659 // Do not print more than one report, otherwise they will mix up.
663 Report("AddressSanitizer: while reporting a bug found another one. "
667 // to print an error report will finish doing it.
679 StartReporting(report);
712 Report("ABORTING\n");
718 void StartReporting(ReportData *report) {
719 if (report) report_data = *report;
722 // Make sure the registry and sanitizer report mutexes are locked while
723 // we're printing an error report.
742 ScopedInErrorReport in_report(/*report*/ nullptr, /*fatal*/ true);
745 Report(
758 ScopedInErrorReport in_report(/*report*/ nullptr, /*fatal*/ true);
761 Report(
769 Report("Hint: pc points to the zero page.\n");
775 Report("The signal is caused by a %s memory access.\n", access_type);
777 Report("Hint: address points to the zero page.\n");
805 Report("ERROR: AddressSanitizer: attempting double-free on %p in "
825 Report("ERROR: AddressSanitizer: new-delete-type-mismatch on %p in "
839 Report("HINT: if you don't care about these errors you may set "
849 Report("ERROR: AddressSanitizer: attempting free on address "
872 Report("ERROR: AddressSanitizer: alloc-dealloc-mismatch (%s vs %s) on %p\n",
881 Report("HINT: if you don't care about these errors you may set "
889 Report("ERROR: AddressSanitizer: attempting to call "
903 Report("ERROR: AddressSanitizer: attempting to call "
921 Report("ERROR: AddressSanitizer: %s: "
938 Report("ERROR: AddressSanitizer: %s: (size=%zd)\n", bug_type, size);
950 Report("ERROR: AddressSanitizer: bad parameters to "
959 Report("ERROR: beg is not aligned by %d\n", granularity);
969 Report("ERROR: AddressSanitizer: odr-violation (%p):\n", g1->beg);
985 Report("HINT: if you don't care about these errors you may set "
1000 Report("ERROR: AddressSanitizer: invalid-pointer-pair: %p %p\n", a1, a2);
1170 ReportData report = { pc, sp, bp, addr, (bool)is_write, access_size,
1172 ScopedInErrorReport in_report(&report, fatal);
1176 Report("ERROR: AddressSanitizer: %s on address "