Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/test/API/python_api/interpreter/
H A DTestRunCommandInterpreterAPI.py84 self.assertEqual(opts.GetStopOnError(), False)
93 opts.SetStopOnError(not opts.GetStopOnError())
102 self.assertEqual(opts.GetStopOnError(), True)
/llvm-project-15.0.7/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-15.0.7/lldb/bindings/interface/
H A DSBCommandInterpreterRunOptions.i39 GetStopOnError () const;
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBCommandInterpreterRunOptions.h39 bool GetStopOnError() const;
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h125 bool GetStopOnError() const { return DefaultToNo(m_stop_on_error); } in GetStopOnError() function
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2529 if (options.GetStopOnError()) { in HandleCommands()