Home
last modified time | relevance | path

Searched refs:source_step (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/gdb/gdb/
H A Dremote-vx.c747 SOURCE_STEP source_step; in net_step() local
749 source_step.taskId = PIDGET (inferior_ptid); in net_step()
753 source_step.startAddr = step_range_start; in net_step()
754 source_step.endAddr = step_range_end; in net_step()
758 source_step.startAddr = 0; in net_step()
759 source_step.endAddr = 0; in net_step()
762 status = net_clnt_call (VX_SOURCE_STEP, xdr_SOURCE_STEP, &source_step, in net_step()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DThread.h526 StepIn(bool source_step,
544 bool source_step,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DThread.cpp2114 Status Thread::StepIn(bool source_step, in StepIn() argument
2127 if (source_step && frame_sp && frame_sp->HasDebugInformation()) { in StepIn()
2150 Status Thread::StepOver(bool source_step, in StepOver() argument
2161 if (source_step && frame_sp && frame_sp->HasDebugInformation()) { in StepOver()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp4444 bool source_step = (c == 'n'); in WindowDelegateHandleChar() local
4445 exe_ctx.GetThreadRef().StepOver(source_step); in WindowDelegateHandleChar()
4457 bool source_step = (c == 's'); in WindowDelegateHandleChar() local
4458 exe_ctx.GetThreadRef().StepIn(source_step); in WindowDelegateHandleChar()