Home
last modified time | relevance | path

Searched refs:user_source (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h46 CommandData() : user_source(), script_source() {} in CommandData()
48 CommandData(const StringList &user_source, lldb::ScriptLanguage interp) in CommandData()
49 : user_source(user_source), script_source(), interpreter(interp), in CommandData()
62 StringList user_source; member
H A DWatchpointOptions.h169 CommandData() : user_source(), script_source() {} in CommandData()
173 StringList user_source; member
/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp33 size_t num_strings = user_source.GetSize(); in SerializeToStructuredData()
48 new StructuredData::String(user_source[i])); in SerializeToStructuredData()
90 StructuredData::Array *user_source; in CreateFromStructuredData() local
92 user_source); in CreateFromStructuredData()
95 size_t num_elems = user_source->GetSize(); in CreateFromStructuredData()
98 success = user_source->GetItemAtIndexAsString(i, elem_string); in CreateFromStructuredData()
100 data_up->user_source.AppendString(elem_string); in CreateFromStructuredData()
476 command_list = data->user_source; in GetCommandLineCallbacks()
601 if (data && data->user_source.GetSize() > 0) { in GetDescription()
602 for (llvm::StringRef str : data->user_source) { in GetDescription()
[all …]
H A DWatchpointOptions.cpp166 << ((data && data->user_source.GetSize() > 0) ? "yes" : "no"); in GetDescription()
175 if (data && data->user_source.GetSize() > 0) { in GetDescription()
176 for (const std::string &line : data->user_source) { in GetDescription()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp235 data_up->user_source.SplitIntoLines(line); in IOHandlerInputComplete()
262 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
281 StringList &commands = data->user_source; in WatchpointOptionsCallbackFunction()
H A DCommandObjectBreakpointCommand.cpp253 cmd_data->user_source.SplitIntoLines(line.c_str(), line.size()); in IOHandlerInputComplete()
275 cmd_data->user_source.AppendString(oneliner); in SetBreakpointCommandCallback()
H A DCommandObjectBreakpoint.cpp151 cmd_data->user_source.AppendString(str); in OptionParsingFinished()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp646 data_up->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
649 if (GenerateBreakpointCommandCallbackData(data_up->user_source, in IOHandlerInputComplete()
671 data_up->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
673 if (GenerateWatchpointCommandCallbackData(data_up->user_source, in IOHandlerInputComplete()
1312 error = GenerateBreakpointCommandCallbackData(cmd_data_up->user_source, in SetBreakpointCommandCallback()
1340 data_up->user_source.SplitIntoLines(command_body_text); in SetBreakpointCommandCallback()
1341 Status error = GenerateBreakpointCommandCallbackData(data_up->user_source, in SetBreakpointCommandCallback()
1364 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
1367 if (GenerateWatchpointCommandCallbackData(data_up->user_source, in SetWatchpointCommandCallback()