Lines Matching refs:ScopedInErrorReport
122 class ScopedInErrorReport { class
124 explicit ScopedInErrorReport(bool fatal = false) in ScopedInErrorReport() function in __asan::ScopedInErrorReport
135 ~ScopedInErrorReport() { in ~ScopedInErrorReport()
212 ErrorDescription ScopedInErrorReport::current_error_(LINKER_INITIALIZED);
215 ScopedInErrorReport in_report(/*fatal*/ true); in ReportDeadlySignal()
221 ScopedInErrorReport in_report; in ReportDoubleFree()
229 ScopedInErrorReport in_report; in ReportNewDeleteTypeMismatch()
236 ScopedInErrorReport in_report; in ReportFreeNotMalloced()
244 ScopedInErrorReport in_report; in ReportAllocTypeMismatch()
251 ScopedInErrorReport in_report; in ReportMallocUsableSizeNotOwned()
258 ScopedInErrorReport in_report; in ReportSanitizerGetAllocatedSizeNotOwned()
265 ScopedInErrorReport in_report(/*fatal*/ true); in ReportCallocOverflow()
272 ScopedInErrorReport in_report(/*fatal*/ true); in ReportReallocArrayOverflow()
278 ScopedInErrorReport in_report(/*fatal*/ true); in ReportPvallocOverflow()
285 ScopedInErrorReport in_report(/*fatal*/ true); in ReportInvalidAllocationAlignment()
293 ScopedInErrorReport in_report(/*fatal*/ true); in ReportInvalidAlignedAllocAlignment()
301 ScopedInErrorReport in_report(/*fatal*/ true); in ReportInvalidPosixMemalignAlignment()
309 ScopedInErrorReport in_report(/*fatal*/ true); in ReportAllocationSizeTooBig()
316 ScopedInErrorReport in_report(/*fatal*/ true); in ReportRssLimitExceeded()
322 ScopedInErrorReport in_report(/*fatal*/ true); in ReportOutOfMemory()
331 ScopedInErrorReport in_report; in ReportStringFunctionMemoryRangesOverlap()
340 ScopedInErrorReport in_report; in ReportStringFunctionSizeOverflow()
349 ScopedInErrorReport in_report; in ReportBadParamsToAnnotateContiguousContainer()
357 ScopedInErrorReport in_report; in ReportODRViolation()
366 ScopedInErrorReport in_report; in ReportInvalidPointerPair()
437 ScopedInErrorReport in_report; in ReportMacMzReallocUnknown()
474 ScopedInErrorReport in_report(fatal); in ReportGenericError()
505 return ScopedInErrorReport::CurrentError().kind != kErrorKindInvalid; in __asan_report_present()
509 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_pc()
510 return ScopedInErrorReport::CurrentError().Generic.pc; in __asan_get_report_pc()
515 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_bp()
516 return ScopedInErrorReport::CurrentError().Generic.bp; in __asan_get_report_bp()
521 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_sp()
522 return ScopedInErrorReport::CurrentError().Generic.sp; in __asan_get_report_sp()
527 ErrorDescription &err = ScopedInErrorReport::CurrentError(); in __asan_get_report_address()
536 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_access_type()
537 return ScopedInErrorReport::CurrentError().Generic.is_write; in __asan_get_report_access_type()
542 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_access_size()
543 return ScopedInErrorReport::CurrentError().Generic.access_size; in __asan_get_report_access_size()
548 if (ScopedInErrorReport::CurrentError().kind == kErrorKindGeneric) in __asan_get_report_description()
549 return ScopedInErrorReport::CurrentError().Generic.bug_descr; in __asan_get_report_description()
550 return ScopedInErrorReport::CurrentError().Base.scariness.GetDescription(); in __asan_get_report_description()