Home
last modified time | relevance | path

Searched refs:StepInstruction (Results 1 – 10 of 10) sorted by relevance

/external/llvm-project/lldb/bindings/interface/
DSBThread.i238 StepInstruction(bool step_over);
241 "Do an instruction level single step in the currently selected thread.") StepInstruction;
243 StepInstruction(bool step_over, SBError &error);
/external/llvm-project/lldb/test/API/functionalities/breakpoint/consecutive_breakpoints/
DTestConsecutiveBreakpoints.py64 self.thread.StepInstruction(step_over)
91 self.thread.StepInstruction(step_over)
/external/llvm-project/lldb/include/lldb/API/
DSBThread.h113 void StepInstruction(bool step_over);
115 void StepInstruction(bool step_over, SBError &error);
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_thread.py22 obj.StepInstruction(True)
/external/llvm-project/lldb/test/API/functionalities/thread/crash_during_step/
DTestCrashDuringStep.py50 thread.StepInstruction(False)
/external/llvm-project/lldb/test/API/linux/thread/create_during_instruction_step/
DTestCreateDuringInstructionStep.py59 thread.StepInstruction(False)
/external/llvm-project/lldb/source/API/
DSBThread.cpp708 void SBThread::StepInstruction(bool step_over) { in StepInstruction() function in SBThread
709 LLDB_RECORD_METHOD(void, SBThread, StepInstruction, (bool), step_over); in StepInstruction()
712 StepInstruction(step_over, error); in StepInstruction()
715 void SBThread::StepInstruction(bool step_over, SBError &error) { in StepInstruction() function in SBThread
716 LLDB_RECORD_METHOD(void, SBThread, StepInstruction, (bool, lldb::SBError &), in StepInstruction()
1397 LLDB_REGISTER_METHOD(void, SBThread, StepInstruction, (bool)); in RegisterMethods()
1398 LLDB_REGISTER_METHOD(void, SBThread, StepInstruction, in RegisterMethods()
/external/llvm-project/lldb/test/API/functionalities/unwind/standard/
DTestStandardUnwind.py130 thread.StepInstruction(False)
/external/llvm-project/lldb/test/API/commands/watchpoints/step_over_watchpoint/
DTestStepOverWatchpoint.py107 self.thread().StepInstruction(False) # step_over=False
/external/llvm-project/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/
DTestStepOverBreakpoint.py73 self.thread.StepInstruction(True)