Home
last modified time | relevance | path

Searched refs:CommandData (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h45 struct CommandData { struct
46 CommandData() = default;
48 CommandData(const StringList &user_source, lldb::ScriptLanguage interp) in CommandData() argument
51 virtual ~CommandData() = default;
57 static std::unique_ptr<CommandData> argument
84 class CommandBaton : public TypedBaton<CommandData> { argument
86 explicit CommandBaton(std::unique_ptr<CommandData> Data) in CommandBaton()
341 void SetCommandDataCallback(std::unique_ptr<CommandData> &cmd_data);
H A DWatchpointOptions.h163 struct CommandData {
164 CommandData() = default;
166 ~CommandData() = default;
173 class CommandBaton : public TypedBaton<CommandData> {
175 CommandBaton(std::unique_ptr<CommandData> Data)
168 struct CommandData { global() struct
178 stop_on_errorCommandData global() argument
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp27 *BreakpointOptions::CommandData::g_option_names[static_cast<uint32_t>(
28 BreakpointOptions::CommandData::OptionNames::LastOptionName)]{
32 BreakpointOptions::CommandData::SerializeToStructuredData() { in SerializeToStructuredData()
59 std::unique_ptr<BreakpointOptions::CommandData>
60 BreakpointOptions::CommandData::CreateFromStructuredData( in CreateFromStructuredData()
62 std::unique_ptr<CommandData> data_up(new CommandData()); in CreateFromStructuredData()
279 std::unique_ptr<CommandData> cmd_data_up; in CreateFromStructuredData()
282 CommandData::GetSerializationKey(), cmds_dict); in CreateFromStructuredData()
285 cmd_data_up = CommandData::CreateFromStructuredData(*cmds_dict, cmds_error); in CreateFromStructuredData()
370 BreakpointOptions::CommandData::GetSerializationKey(), commands_sp); in SerializeToStructuredData()
[all …]
H A DWatchpointOptions.cpp160 const CommandData *data = getItem(); in GetDescription()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.h31 class CommandDataPython : public BreakpointOptions::CommandData {
33 CommandDataPython() : BreakpointOptions::CommandData() { in CommandDataPython()
37 : BreakpointOptions::CommandData(), in CommandDataPython()
H A DScriptInterpreterPython.cpp562 auto data_up = std::make_unique<WatchpointOptions::CommandData>(); in IOHandlerInputComplete()
1216 std::unique_ptr<BreakpointOptions::CommandData> &cmd_data_up) { in SetBreakpointCommandCallback()
1268 auto data_up = std::make_unique<WatchpointOptions::CommandData>(); in SetWatchpointCommandCallback()
1973 WatchpointOptions::CommandData *wp_option_data = in WatchpointCallbackFunction()
1974 (WatchpointOptions::CommandData *)baton; in WatchpointCallbackFunction()
H A DScriptInterpreterPythonImpl.h270 std::unique_ptr<BreakpointOptions::CommandData> &data_up) override;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h24 class CommandDataLua : public BreakpointOptions::CommandData {
26 CommandDataLua() : BreakpointOptions::CommandData() { in CommandDataLua()
30 : BreakpointOptions::CommandData(), m_extra_args_sp(extra_args_sp) { in CommandDataLua()
H A DScriptInterpreterLua.cpp382 auto data_up = std::make_unique<WatchpointOptions::CommandData>(); in RegisterWatchpointCallback()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp190 std::unique_ptr<WatchpointOptions::CommandData> data_up( in IOHandlerInputComplete()
191 new WatchpointOptions::CommandData()); in IOHandlerInputComplete()
213 std::unique_ptr<WatchpointOptions::CommandData> data_up( in SetWatchpointCommandCallback()
214 new WatchpointOptions::CommandData()); in SetWatchpointCommandCallback()
237 WatchpointOptions::CommandData *data = in WatchpointOptionsCallbackFunction()
238 (WatchpointOptions::CommandData *)baton; in WatchpointOptionsCallbackFunction()
H A DCommandObjectBreakpointCommand.cpp211 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in IOHandlerInputComplete()
232 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in SetBreakpointCommandCallback()
H A DCommandObjectBreakpoint.cpp165 auto cmd_data = std::make_unique<BreakpointOptions::CommandData>(); in OptionParsingFinished()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointLocation.cpp285 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
286 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
H A DSBBreakpointName.cpp472 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
473 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
H A DSBBreakpoint.cpp490 std::unique_ptr<BreakpointOptions::CommandData> cmd_data_up( in SetCommandLineCommands()
491 new BreakpointOptions::CommandData(*commands, eScriptLanguageNone)); in SetCommandLineCommands()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h335 std::unique_ptr<BreakpointOptions::CommandData> &data_up) { in SetBreakpointCommandCallback()