Home
last modified time | relevance | path

Searched refs:should_stop_or_err (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DScriptedThreadPlan.cpp99 auto should_stop_or_err = m_interface->ShouldStop(event_ptr); in ShouldStop() local
100 if (!should_stop_or_err) { in ShouldStop()
101 LLDB_LOG_ERROR(GetLog(LLDBLog::Thread), should_stop_or_err.takeError(), in ShouldStop()
105 should_stop = *should_stop_or_err; in ShouldStop()
H A DTarget.cpp4038 auto should_stop_or_err = m_interface_sp->HandleStop(exc_ctx, stream); in HandleStop() local
4041 if (!should_stop_or_err) in HandleStop()
4044 return *should_stop_or_err ? StopHookResult::KeepStopped in HandleStop()