Home
last modified time | relevance | path

Searched refs:RunMode (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThreadPlanStepInRange.h26 lldb::RunMode stop_others,
33 lldb::RunMode stop_others,
78 const SymbolContext &addr_context, lldb::RunMode stop_others,
83 lldb::RunMode stop_others, Status &status,
H A DThreadPlanStepRange.h26 lldb::RunMode stop_others,
68 lldb::RunMode m_stop_others;
H A DThread.h264 static const char *RunModeAsCString(lldb::RunMode mode);
709 const SymbolContext &addr_context, lldb::RunMode stop_other_threads,
718 const SymbolContext &addr_context, lldb::RunMode stop_other_threads,
774 lldb::RunMode stop_other_threads, Status &status,
784 lldb::RunMode stop_other_threads, Status &status,
H A DThreadPlanStepOverRange.h25 lldb::RunMode stop_others,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBThread.h94 void StepOver(lldb::RunMode stop_other_threads = lldb::eOnlyDuringStepping);
96 void StepOver(lldb::RunMode stop_other_threads, SBError &error);
98 void StepInto(lldb::RunMode stop_other_threads = lldb::eOnlyDuringStepping);
101 lldb::RunMode stop_other_threads = lldb::eOnlyDuringStepping);
104 lldb::RunMode stop_other_threads = lldb::eOnlyDuringStepping);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThreadPlanStepOverRange.cpp36 const SymbolContext &addr_context, lldb::RunMode stop_others, in ThreadPlanStepOverRange()
283 const RunMode stop_other_threads = RunMode::eAllThreads; in ShouldStop()
H A DThreadPlanStepInRange.cpp39 const SymbolContext &addr_context, lldb::RunMode stop_others, in ThreadPlanStepInRange()
56 lldb::RunMode stop_others, LazyBool step_in_avoids_code_without_debug_info, in ThreadPlanStepInRange()
H A DThread.cpp1384 const SymbolContext &addr_context, lldb::RunMode stop_other_threads, in QueueThreadPlanForStepOverRange()
1399 const SymbolContext &addr_context, lldb::RunMode stop_other_threads, in QueueThreadPlanForStepOverRange()
1410 lldb::RunMode stop_other_threads, Status &status, in QueueThreadPlanForStepInRange()
1431 lldb::RunMode stop_other_threads, Status &status, in QueueThreadPlanForStepInRange()
1893 const char *Thread::RunModeAsCString(lldb::RunMode mode) { in RunModeAsCString()
2124 const lldb::RunMode run_mode = eOnlyThisThread; in StepIn()
2158 const lldb::RunMode run_mode = eOnlyThisThread; in StepOver()
H A DThreadPlanStepOut.cpp449 RunMode run_mode = in QueueInlinedStepPlan()
H A DThreadPlanStepRange.cpp38 lldb::RunMode stop_others, in ThreadPlanStepRange()
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBThread.cpp635 void SBThread::StepOver(lldb::RunMode stop_other_threads) { in StepOver()
640 void SBThread::StepOver(lldb::RunMode stop_other_threads, SBError &error) { in StepOver()
677 void SBThread::StepInto(lldb::RunMode stop_other_threads) { in StepInto()
682 lldb::RunMode stop_other_threads) { in StepInto()
688 SBError &error, lldb::RunMode stop_other_threads) { in StepInto()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectThread.cpp481 m_run_mode = (lldb::RunMode)OptionArgParser::ToOptionEnum( in SetOptionValue()
539 RunMode m_run_mode;
639 const lldb::RunMode stop_other_threads = m_options.m_run_mode; in DoExecute()
1057 lldb::RunMode run_mode = (lldb::RunMode)OptionArgParser::ToOptionEnum( in SetOptionValue()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-enumerations.h137 enum RunMode { eOnlyThisThread, eAllThreads, eOnlyDuringStepping }; enum