Home
last modified time | relevance | path

Searched refs:GetStopOnError (Results 1 – 5 of 5) sorted by relevance

/llvm-project/lldb/test/API/python_api/interpreter/
H A DTestRunCommandInterpreterAPI.py121 self.assertFalse(opts.GetStopOnError())
131 opts.SetStopOnError(not opts.GetStopOnError())
141 self.assertTrue(opts.GetStopOnError())
/llvm-project/lldb/source/API/
H A DSBCommandInterpreterRunOptions.cpp58 bool SBCommandInterpreterRunOptions::GetStopOnError() const { in GetStopOnError() function in SBCommandInterpreterRunOptions
61 return m_opaque_up->GetStopOnError(); in GetStopOnError()
/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreterRunOptions.h39 bool GetStopOnError() const;
/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h133 bool GetStopOnError() const { return DefaultToNo(m_stop_on_error); } in GetStopOnError() function
/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2640 if (options.GetStopOnError()) { in HandleCommands()