Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/python_api/interpreter/
DTestRunCommandInterpreterAPI.py37 n_errors, quit_requested, has_crashed = self.dbg.RunCommandInterpreter(
71 n_errors, quit_requested, has_crashed = self.dbg.RunCommandInterpreter(
/external/llvm-project/lldb/include/lldb/API/
DSBDebugger.h304 void RunCommandInterpreter(bool auto_handle_events, bool spawn_thread);
329 void RunCommandInterpreter(bool auto_handle_events, bool spawn_thread,
335 RunCommandInterpreter(const SBCommandInterpreterRunOptions &options);
/external/llvm-project/lldb/test/API/iohandler/resize/
DTestIOHandlerResizeNoEditline.py21 dbg.RunCommandInterpreter(True, True, opts, 0, False, False)
/external/llvm-project/lldb/source/API/
DSBDebugger.cpp1161 void SBDebugger::RunCommandInterpreter(bool auto_handle_events, in RunCommandInterpreter() function in SBDebugger
1163 LLDB_RECORD_METHOD(void, SBDebugger, RunCommandInterpreter, (bool, bool), in RunCommandInterpreter()
1170 m_opaque_sp->GetCommandInterpreter().RunCommandInterpreter(options); in RunCommandInterpreter()
1174 void SBDebugger::RunCommandInterpreter(bool auto_handle_events, in RunCommandInterpreter() function in SBDebugger
1181 LLDB_RECORD_METHOD(void, SBDebugger, RunCommandInterpreter, in RunCommandInterpreter()
1192 interp.RunCommandInterpreter(options.ref()); in RunCommandInterpreter()
1201 SBCommandInterpreterRunResult SBDebugger::RunCommandInterpreter( in RunCommandInterpreter() function in SBDebugger
1204 RunCommandInterpreter, in RunCommandInterpreter()
1212 interp.RunCommandInterpreter(options.ref()); in RunCommandInterpreter()
1786 LLDB_REGISTER_METHOD(void, SBDebugger, RunCommandInterpreter, (bool, bool)); in RegisterMethods()
[all …]
/external/llvm-project/lldb/bindings/interface/
DSBDebugger.i506 False, lldb.SBCommandInterpreterRunOptions(), 0, False, False)") RunCommandInterpreter;
511 RunCommandInterpreter (bool auto_handle_events,
/external/llvm-project/lldb/tools/driver/
DDriver.cpp613 m_debugger.RunCommandInterpreter(options); in MainLoop()
639 m_debugger.RunCommandInterpreter(options); in MainLoop()
675 m_debugger.RunCommandInterpreter(handle_events, spawn_thread); in MainLoop()
/external/llvm-project/lldb/test/API/python_api/file_handle/
DTestFileHandle.py357 self.dbg.RunCommandInterpreter(True, False, opts, 0, False, False)
376 self.dbg.RunCommandInterpreter(True, False, opts, 0, False, False)
395 self.dbg.RunCommandInterpreter(True, False, opts, 0, False, False)
413 self.dbg.RunCommandInterpreter(True, False, opts, 0, False, False)
431 self.dbg.RunCommandInterpreter(True, False, opts, 0, False, False)
/external/llvm-project/lldb/test/API/api/multithreaded/
Dtest_stop-hook.cpp.template105 dbg.RunCommandInterpreter(false, true);
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h477 RunCommandInterpreter(CommandInterpreterRunOptions &options);
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp3065 CommandInterpreterRunResult CommandInterpreter::RunCommandInterpreter( in RunCommandInterpreter() function in CommandInterpreter