Searched refs:user_source (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/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 user_source->GetItemAtIndexAsString(i)) in CreateFromStructuredData() 93 data_up->user_source.AppendString(*maybe_elem_string); in CreateFromStructuredData() 457 command_list = data->user_source; in GetCommandLineCallbacks() 568 << ((data && data->user_source.GetSize() > 0) ? "yes" : "no"); in GetDescription() 582 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()
|
/freebsd/contrib/llvm-project/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 | 168 StringList user_source; 173 StringList user_source; global() member
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectWatchpointCommand.cpp | 193 data_up->user_source.SplitIntoLines(line); in IOHandlerInputComplete() 220 data_up->user_source.AppendString(oneliner); in SetWatchpointCommandCallback() 239 StringList &commands = data->user_source; in WatchpointOptionsCallbackFunction()
|
H A D | CommandObjectBreakpointCommand.cpp | 212 cmd_data->user_source.SplitIntoLines(line.c_str(), line.size()); in IOHandlerInputComplete() 234 cmd_data->user_source.AppendString(oneliner); in SetBreakpointCommandCallback()
|
H A D | CommandObjectBreakpoint.cpp | 168 cmd_data->user_source.AppendString(str); in OptionParsingFinished()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | ScriptInterpreterPython.cpp | 538 data_up->user_source.SplitIntoLines(data); in IOHandlerInputComplete() 540 if (GenerateBreakpointCommandCallbackData(data_up->user_source, in IOHandlerInputComplete() 563 data_up->user_source.SplitIntoLines(data); in IOHandlerInputComplete() 565 if (GenerateWatchpointCommandCallbackData(data_up->user_source, in IOHandlerInputComplete() 1218 error = GenerateBreakpointCommandCallbackData(cmd_data_up->user_source, in SetBreakpointCommandCallback() 1250 data_up->user_source.SplitIntoLines(command_body_text); in SetBreakpointCommandCallback() 1252 data_up->user_source, data_up->script_source, uses_extra_args, in SetBreakpointCommandCallback() 1275 data_up->user_source.AppendString(user_input); in SetWatchpointCommandCallback() 1279 data_up->user_source, data_up->script_source, is_callback)) { in SetWatchpointCommandCallback()
|