Lines Matching refs:UnwindStatusOr
225 class UnwindStatusOr { class
227 UnwindStatusOr(UnwindStatus status) : status_(status) { in UnwindStatusOr() function in abi_test::internal::UnwindStatusOr
231 UnwindStatusOr(const T &value) : status_(UnwindStatus()), value_(value) {} in UnwindStatusOr() function in abi_test::internal::UnwindStatusOr
261 UnwindStatusOr<bool> Step() { in Step()
289 UnwindStatusOr<crypto_word_t> GetIP() { return ctx_.Rip; } in GetIP()
292 UnwindStatusOr<crypto_word_t> GetSP() { return ctx_.Rsp; } in GetSP()
295 UnwindStatusOr<CallerState> GetCallerState() { in GetCallerState()
344 UnwindStatusOr<bool> Step() { in Step()
353 UnwindStatusOr<crypto_word_t> GetIP() { in GetIP()
363 UnwindStatusOr<crypto_word_t> GetSP() { in GetSP()
373 UnwindStatusOr<CallerState> GetCallerState() { in GetCallerState()
555 UnwindStatusOr<bool> step_ret = cursor->Step(); in CheckUnwind()
566 UnwindStatusOr<crypto_word_t> cur_sp = cursor->GetSP(); in CheckUnwind()
578 UnwindStatusOr<crypto_word_t> cur_ip = cursor->GetIP(); in CheckUnwind()
587 UnwindStatusOr<CallerState> state = cursor->GetCallerState(); in CheckUnwind()