Home | History | Annotate | Download | only in Commands

Lines Matching refs:interpreter

24 #include "lldb/Interpreter/CommandInterpreter.h"
25 #include "lldb/Interpreter/CommandReturnObject.h"
26 #include "lldb/Interpreter/CommandCompletions.h"
174 CommandObjectWatchpointList (CommandInterpreter &interpreter) :
175 CommandObjectParsed (interpreter,
179 m_options(interpreter)
200 CommandOptions (CommandInterpreter &interpreter) :
201 Options(interpreter),
358 CommandObjectWatchpointEnable (CommandInterpreter &interpreter) :
359 CommandObjectParsed (interpreter,
437 CommandObjectWatchpointDisable (CommandInterpreter &interpreter) :
438 CommandObjectParsed (interpreter,
521 CommandObjectWatchpointDelete (CommandInterpreter &interpreter) :
522 CommandObjectParsed(interpreter,
603 CommandObjectWatchpointIgnore (CommandInterpreter &interpreter) :
604 CommandObjectParsed (interpreter,
608 m_options (interpreter)
629 CommandOptions (CommandInterpreter &interpreter) :
630 Options (interpreter),
757 CommandObjectWatchpointModify (CommandInterpreter &interpreter) :
758 CommandObjectParsed (interpreter,
764 m_options (interpreter)
785 CommandOptions (CommandInterpreter &interpreter) :
786 Options (interpreter),
919 CommandObjectWatchpointSetVariable (CommandInterpreter &interpreter) :
920 CommandObjectParsed (interpreter,
936 m_option_group (interpreter),
1126 CommandObjectWatchpointSetExpression (CommandInterpreter &interpreter) :
1127 CommandObjectRaw (interpreter,
1143 m_option_group (interpreter),
1335 CommandObjectWatchpointSet (CommandInterpreter &interpreter) :
1336 CommandObjectMultiword (interpreter,
1342 LoadSubCommand ("variable", CommandObjectSP (new CommandObjectWatchpointSetVariable (interpreter)));
1343 LoadSubCommand ("expression", CommandObjectSP (new CommandObjectWatchpointSetExpression (interpreter)));
1357 CommandObjectMultiwordWatchpoint::CommandObjectMultiwordWatchpoint(CommandInterpreter &interpreter) :
1358 CommandObjectMultiword (interpreter,
1363 CommandObjectSP list_command_object (new CommandObjectWatchpointList (interpreter));
1364 CommandObjectSP enable_command_object (new CommandObjectWatchpointEnable (interpreter));
1365 CommandObjectSP disable_command_object (new CommandObjectWatchpointDisable (interpreter));
1366 CommandObjectSP delete_command_object (new CommandObjectWatchpointDelete (interpreter));
1367 CommandObjectSP ignore_command_object (new CommandObjectWatchpointIgnore (interpreter));
1368 CommandObjectSP command_command_object (new CommandObjectWatchpointCommand (interpreter));
1369 CommandObjectSP modify_command_object (new CommandObjectWatchpointModify (interpreter));
1370 CommandObjectSP set_command_object (new CommandObjectWatchpointSet (interpreter));