Lines Matching refs:ScopedInErrorReport
124 class ScopedInErrorReport { class
126 explicit ScopedInErrorReport(bool fatal = false) in ScopedInErrorReport() function in __asan::ScopedInErrorReport
137 ~ScopedInErrorReport() { in ~ScopedInErrorReport()
214 ErrorDescription ScopedInErrorReport::current_error_(LINKER_INITIALIZED);
217 ScopedInErrorReport in_report(/*fatal*/ true); in ReportDeadlySignal()
223 ScopedInErrorReport in_report; in ReportDoubleFree()
231 ScopedInErrorReport in_report; in ReportNewDeleteTypeMismatch()
238 ScopedInErrorReport in_report; in ReportFreeNotMalloced()
246 ScopedInErrorReport in_report; in ReportAllocTypeMismatch()
253 ScopedInErrorReport in_report; in ReportMallocUsableSizeNotOwned()
260 ScopedInErrorReport in_report; in ReportSanitizerGetAllocatedSizeNotOwned()
267 ScopedInErrorReport in_report(/*fatal*/ true); in ReportCallocOverflow()
274 ScopedInErrorReport in_report(/*fatal*/ true); in ReportReallocArrayOverflow()
280 ScopedInErrorReport in_report(/*fatal*/ true); in ReportPvallocOverflow()
287 ScopedInErrorReport in_report(/*fatal*/ true); in ReportInvalidAllocationAlignment()
295 ScopedInErrorReport in_report(/*fatal*/ true); in ReportInvalidAlignedAllocAlignment()
303 ScopedInErrorReport in_report(/*fatal*/ true); in ReportInvalidPosixMemalignAlignment()
311 ScopedInErrorReport in_report(/*fatal*/ true); in ReportAllocationSizeTooBig()
318 ScopedInErrorReport in_report(/*fatal*/ true); in ReportRssLimitExceeded()
324 ScopedInErrorReport in_report(/*fatal*/ true); in ReportOutOfMemory()
333 ScopedInErrorReport in_report; in ReportStringFunctionMemoryRangesOverlap()
342 ScopedInErrorReport in_report; in ReportStringFunctionSizeOverflow()
351 ScopedInErrorReport in_report; in ReportBadParamsToAnnotateContiguousContainer()
359 ScopedInErrorReport in_report; in ReportODRViolation()
368 ScopedInErrorReport in_report; in ReportInvalidPointerPair()
439 ScopedInErrorReport in_report; in ReportMacMzReallocUnknown()
481 ScopedInErrorReport in_report(fatal); in ReportGenericError()
512 return ScopedInErrorReport::CurrentError().kind != kErrorKindInvalid; in __asan_report_present()
516 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_pc()
517 return ScopedInErrorReport::CurrentError().Generic.pc; in __asan_get_report_pc()
522 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_bp()
523 return ScopedInErrorReport::CurrentError().Generic.bp; in __asan_get_report_bp()
528 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_sp()
529 return ScopedInErrorReport::CurrentError().Generic.sp; in __asan_get_report_sp()
534 ErrorDescription &err = ScopedInErrorReport::CurrentError(); in __asan_get_report_address()
543 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_access_type()
544 return ScopedInErrorReport::CurrentError().Generic.is_write; in __asan_get_report_access_type()
549 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_access_size()
550 return ScopedInErrorReport::CurrentError().Generic.access_size; in __asan_get_report_access_size()
555 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_description()
556 return ScopedInErrorReport::CurrentError().Generic.bug_descr; in __asan_get_report_description()
557 return ScopedInErrorReport::CurrentError().Base.scariness.GetDescription(); in __asan_get_report_description()