Searched refs:user_source (Results 1 – 8 of 8) sorted by relevance
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
H A D | BreakpointOptions.cpp | 33 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 D | WatchpointOptions.cpp | 164 << ((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 D | BreakpointOptions.h | 48 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 D | WatchpointOptions.h | 173 StringList user_source; member
|
/openbsd-src/gnu/llvm/lldb/source/Commands/ |
H A D | CommandObjectWatchpointCommand.cpp | 205 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 D | CommandObjectBreakpointCommand.cpp | 224 cmd_data->user_source.SplitIntoLines(line.c_str(), line.size()); in IOHandlerInputComplete() 246 cmd_data->user_source.AppendString(oneliner); in SetBreakpointCommandCallback()
|
H A D | CommandObjectBreakpoint.cpp | 165 cmd_data->user_source.AppendString(str); in OptionParsingFinished()
|
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | ScriptInterpreterPython.cpp | 521 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()
|