Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp34 size_t num_strings = user_source.GetSize(); in SerializeToStructuredData()
49 new StructuredData::String(user_source[i])); in SerializeToStructuredData()
91 StructuredData::Array *user_source; in CreateFromStructuredData() local
93 user_source); in CreateFromStructuredData()
96 size_t num_elems = user_source->GetSize(); in CreateFromStructuredData()
101 data_up->user_source.AppendString(elem_string); in CreateFromStructuredData()
496 command_list = data->user_source; in GetCommandLineCallbacks()
619 if (data && data->user_source.GetSize() > 0) { in GetDescription()
620 const size_t num_strings = data->user_source.GetSize(); in GetDescription()
622 s->Indent(data->user_source.GetStringAtIndex(i)); in GetDescription()
[all …]
H A DWatchpointOptions.cpp175 (data && data->user_source.GetSize() > 0) ? "yes" : "no"); in GetDescription()
183 if (data && data->user_source.GetSize() > 0) { in GetDescription()
184 const size_t num_strings = data->user_source.GetSize(); in GetDescription()
186 s->Indent(data->user_source.GetStringAtIndex(i)); in GetDescription()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h50 : user_source(), script_source(), in CommandData()
53 CommandData(const StringList &user_source, lldb::ScriptLanguage interp) in CommandData()
54 : user_source(user_source), script_source(), interpreter(interp), in CommandData()
67 StringList user_source; member
H A DWatchpointOptions.h204 CommandData() : user_source(), script_source(), stop_on_error(true) {} in CommandData()
208 StringList user_source; member
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp232 data_ap->user_source.SplitIntoLines(line); in IOHandlerInputComplete()
260 data_ap->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
279 StringList &commands = data->user_source; in WatchpointOptionsCallbackFunction()
H A DCommandObjectBreakpointCommand.cpp245 cmd_data->user_source.SplitIntoLines(line.c_str(), line.size()); in IOHandlerInputComplete()
268 cmd_data->user_source.AppendString(oneliner); in SetBreakpointCommandCallback()
H A DCommandObjectBreakpoint.cpp179 cmd_data->user_source.AppendString(str); in OptionParsingFinished()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp479 data_ap->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
481 if (GenerateBreakpointCommandCallbackData(data_ap->user_source, in IOHandlerInputComplete()
502 data_ap->user_source.SplitIntoLines(data); in IOHandlerInputComplete()
504 if (GenerateWatchpointCommandCallbackData(data_ap->user_source, in IOHandlerInputComplete()
1287 error = GenerateBreakpointCommandCallbackData(cmd_data_up->user_source, in SetBreakpointCommandCallback()
1309 data_ap->user_source.SplitIntoLines(command_body_text); in SetBreakpointCommandCallback()
1310 Status error = GenerateBreakpointCommandCallbackData(data_ap->user_source, in SetBreakpointCommandCallback()
1332 data_ap->user_source.AppendString(oneliner); in SetWatchpointCommandCallback()
1335 if (GenerateWatchpointCommandCallbackData(data_ap->user_source, in SetWatchpointCommandCallback()