Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
85 StructuredData::Array *user_source; in CreateFromStructuredData() local
87 user_source); in CreateFromStructuredData()
89 size_t num_elems = user_source->GetSize(); in CreateFromStructuredData()
92 success = user_source->GetItemAtIndexAsString(i, elem_string); in CreateFromStructuredData()
94 data_up->user_source.AppendString(elem_string); in CreateFromStructuredData()
466 command_list = data->user_source; in GetCommandLineCallbacks()
577 << ((data && data->user_source.GetSize() > 0) ? "yes" : "no"); in GetDescription()
591 if (data && data->user_source.GetSize() > 0) { in GetDescription()
[all …]
H A DWatchpointOptions.cpp164 << ((data && data->user_source.GetSize() > 0) ? "yes" : "no"); in GetDescription()
173 if (data && data->user_source.GetSize() > 0) { in GetDescription()
174 for (const std::string &line : data->user_source) { in GetDescription()
/openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h48 CommandData(const StringList &user_source, lldb::ScriptLanguage interp) in CommandData()
49 : user_source(user_source), interpreter(interp), stop_on_error(true) {} in CommandData()
61 StringList user_source; member
H A DWatchpointOptions.h173 StringList user_source; member
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp205 data_up->user_source.SplitIntoLines(line); in IOHandlerInputComplete()
232 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
251 StringList &commands = data->user_source; in WatchpointOptionsCallbackFunction()
H A DCommandObjectBreakpointCommand.cpp224 cmd_data->user_source.SplitIntoLines(line.c_str(), line.size()); in IOHandlerInputComplete()
246 cmd_data->user_source.AppendString(oneliner); in SetBreakpointCommandCallback()
H A DCommandObjectBreakpoint.cpp165 cmd_data->user_source.AppendString(str); in OptionParsingFinished()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp521 data_up->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
524 if (GenerateBreakpointCommandCallbackData(data_up->user_source, in IOHandlerInputComplete()
546 data_up->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
548 if (GenerateWatchpointCommandCallbackData(data_up->user_source, in IOHandlerInputComplete()
1204 error = GenerateBreakpointCommandCallbackData(cmd_data_up->user_source, in SetBreakpointCommandCallback()
1232 data_up->user_source.SplitIntoLines(command_body_text); in SetBreakpointCommandCallback()
1233 Status error = GenerateBreakpointCommandCallbackData(data_up->user_source, in SetBreakpointCommandCallback()
1256 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
1259 if (GenerateWatchpointCommandCallbackData(data_up->user_source, in SetWatchpointCommandCallback()