Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointOptions.h47 : user_source(), script_source(), in CommandData()
50 CommandData(const StringList &user_source, lldb::ScriptLanguage interp) in CommandData()
51 : user_source(user_source), script_source(), interpreter(interp), in CommandData()
64 StringList user_source; member
DWatchpointOptions.h169 CommandData() : user_source(), script_source(), stop_on_error(true) {} in CommandData()
173 StringList user_source; member
/external/llvm-project/lldb/source/Breakpoint/
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()
478 command_list = data->user_source; in GetCommandLineCallbacks()
589 << ((data && data->user_source.GetSize() > 0) ? "yes" : "no"); in GetDescription()
603 if (data && data->user_source.GetSize() > 0) { in GetDescription()
[all …]
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()
/external/llvm-project/lldb/source/Commands/
DCommandObjectWatchpointCommand.cpp233 data_up->user_source.SplitIntoLines(line); in IOHandlerInputComplete()
260 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
279 StringList &commands = data->user_source; in WatchpointOptionsCallbackFunction()
DCommandObjectBreakpointCommand.cpp245 cmd_data->user_source.SplitIntoLines(line.c_str(), line.size()); in IOHandlerInputComplete()
267 cmd_data->user_source.AppendString(oneliner); in SetBreakpointCommandCallback()
DCommandObjectBreakpoint.cpp151 cmd_data->user_source.AppendString(str); in OptionParsingFinished()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp617 data_up->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
620 if (GenerateBreakpointCommandCallbackData(data_up->user_source, in IOHandlerInputComplete()
642 data_up->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
644 if (GenerateWatchpointCommandCallbackData(data_up->user_source, in IOHandlerInputComplete()
1260 error = GenerateBreakpointCommandCallbackData(cmd_data_up->user_source, in SetBreakpointCommandCallback()
1289 data_up->user_source.SplitIntoLines(command_body_text); in SetBreakpointCommandCallback()
1290 Status error = GenerateBreakpointCommandCallbackData(data_up->user_source, in SetBreakpointCommandCallback()
1313 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
1316 if (GenerateWatchpointCommandCallbackData(data_up->user_source, in SetWatchpointCommandCallback()