Lines Matching refs:CurrentError

200   static ErrorDescription &CurrentError() {  in CurrentError()  function in __asan::ScopedInErrorReport
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()