Searched refs:user_source (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DWatchpointOptions.h203 user_source(),
213 StringList user_source; member in struct:lldb_private::WatchpointOptions::CommandData
H A DBreakpointOptions.h301 user_source(),
311 StringList user_source; member in struct:lldb_private::BreakpointOptions::CommandData
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DWatchpointOptions.cpp217 s->Printf (", commands = %s", (data && data->user_source.GetSize() > 0) ? "yes" : "no");
225 if (data && data->user_source.GetSize() > 0)
227 const size_t num_strings = data->user_source.GetSize();
230 s->Indent(data->user_source.GetStringAtIndex(i));
H A DBreakpointOptions.cpp274 s->Printf (", commands = %s", (data && data->user_source.GetSize() > 0) ? "yes" : "no");
282 if (data && data->user_source.GetSize() > 0)
284 const size_t num_strings = data->user_source.GetSize();
287 s->Indent(data->user_source.GetStringAtIndex(i));
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp237 data_ap->user_source.SplitIntoLines (line.c_str(), line.size());
262 // It's necessary to set both user_source and script_source to the oneliner.
265 data_ap->user_source.AppendString (oneliner);
287 StringList &commands = data->user_source;
H A DCommandObjectWatchpointCommand.cpp216 data_ap->user_source.SplitIntoLines(line);
240 // It's necessary to set both user_source and script_source to the oneliner.
243 data_ap->user_source.AppendString (oneliner);
264 StringList &commands = data->user_source;
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp262 data_ap->user_source.SplitIntoLines(data);
264 if (GenerateBreakpointCommandCallbackData (data_ap->user_source, data_ap->script_source))
288 data_ap->user_source.SplitIntoLines(data);
290 if (GenerateWatchpointCommandCallbackData (data_ap->user_source, data_ap->script_source))
1100 // It's necessary to set both user_source and script_source to the oneliner.
1104 data_ap->user_source.AppendString (oneliner);
1107 if (GenerateBreakpointCommandCallbackData (data_ap->user_source, data_ap->script_source))
1123 // It's necessary to set both user_source and script_source to the oneliner.
1127 data_ap->user_source.AppendString (oneliner);
1130 if (GenerateWatchpointCommandCallbackData (data_ap->user_source, data_a
[all...]

Completed in 117 milliseconds