Lines Matching refs:CurrentError

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