Home
last modified time | relevance | path

Searched refs:stop_on_error (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/mlir/utils/mbr/mbr/
H A Dmain.py14 def main(top_level_path, stop_on_error): argument
45 if stop_on_error is False:
60 if stop_on_error is False:
78 if stop_on_error is False:
90 if stop_on_error is False:
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreterRunOptions.cpp64 void SBCommandInterpreterRunOptions::SetStopOnError(bool stop_on_error) { in SetStopOnError() argument
65 LLDB_INSTRUMENT_VA(this, stop_on_error); in SetStopOnError()
67 m_opaque_up->SetStopOnError(stop_on_error); in SetStopOnError()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h94 LazyBool stop_on_error, LazyBool stop_on_crash, in CommandInterpreterRunOptions() argument
98 : m_stop_on_continue(stop_on_continue), m_stop_on_error(stop_on_error), in CommandInterpreterRunOptions()
127 void SetStopOnError(bool stop_on_error) { in SetStopOnError() argument
128 m_stop_on_error = stop_on_error ? eLazyBoolYes : eLazyBoolNo; in SetStopOnError()
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h49 : user_source(user_source), interpreter(interp), stop_on_error(true) {} in CommandData()
66 bool stop_on_error = true; member
H A DWatchpointOptions.h175 bool stop_on_error = true; member
/llvm-project-15.0.7/mlir/utils/mbr/
H A Dmlir-mbr.in62 benchmark_function_dicts = main(args.top_level_path, args.stop_on_error)
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp234 data_up->stop_on_error = m_options.m_stop_on_error; in SetWatchpointCommandCallback()
270 options.SetStopOnError(data->stop_on_error); in WatchpointOptionsCallbackFunction()
H A DCommandObjectBreakpointCommand.cpp247 cmd_data->stop_on_error = m_options.m_stop_on_error; in SetBreakpointCommandCallback()
H A DCommandObjectBreakpoint.cpp166 cmd_data->stop_on_error = true; in OptionParsingFinished()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp43 stop_on_error); in SerializeToStructuredData()
65 GetKey(OptionNames::StopOnError), data_up->stop_on_error); in CreateFromStructuredData()
634 options.SetStopOnError(data->stop_on_error); in BreakpointOptionsCallbackFunction()
/llvm-project-15.0.7/lldb/examples/python/
H A Dprocess_events.py73 if options.stop_on_error: