Searched refs:StepInstruction (Results 1 – 10 of 10) sorted by relevance
/external/llvm-project/lldb/bindings/interface/ |
D | SBThread.i | 238 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/ |
D | TestConsecutiveBreakpoints.py | 64 self.thread.StepInstruction(step_over) 91 self.thread.StepInstruction(step_over)
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBThread.h | 113 void StepInstruction(bool step_over); 115 void StepInstruction(bool step_over, SBError &error);
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_thread.py | 22 obj.StepInstruction(True)
|
/external/llvm-project/lldb/test/API/functionalities/thread/crash_during_step/ |
D | TestCrashDuringStep.py | 50 thread.StepInstruction(False)
|
/external/llvm-project/lldb/test/API/linux/thread/create_during_instruction_step/ |
D | TestCreateDuringInstructionStep.py | 59 thread.StepInstruction(False)
|
/external/llvm-project/lldb/source/API/ |
D | SBThread.cpp | 708 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/ |
D | TestStandardUnwind.py | 130 thread.StepInstruction(False)
|
/external/llvm-project/lldb/test/API/commands/watchpoints/step_over_watchpoint/ |
D | TestStepOverWatchpoint.py | 107 self.thread().StepInstruction(False) # step_over=False
|
/external/llvm-project/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/ |
D | TestStepOverBreakpoint.py | 73 self.thread.StepInstruction(True)
|