Home | History | Annotate | Download | only in Commands

Lines Matching refs:interpreter

20 #include "lldb/Interpreter/Args.h"
25 #include "lldb/Interpreter/Options.h"
32 #include "lldb/Interpreter/CommandInterpreter.h"
33 #include "lldb/Interpreter/CommandReturnObject.h"
53 CommandObjectLogEnable(CommandInterpreter &interpreter) :
54 CommandObjectParsed (interpreter,
58 m_options (interpreter)
120 CommandOptions (CommandInterpreter &interpreter) :
121 Options (interpreter),
236 CommandObjectLogDisable(CommandInterpreter &interpreter) :
237 CommandObjectParsed (interpreter,
316 CommandObjectLogList(CommandInterpreter &interpreter) :
317 CommandObjectParsed (interpreter,
392 CommandObjectLogTimer(CommandInterpreter &interpreter) :
393 CommandObjectParsed (interpreter,
482 CommandObjectLog::CommandObjectLog(CommandInterpreter &interpreter) :
483 CommandObjectMultiword (interpreter,
488 LoadSubCommand ("enable", CommandObjectSP (new CommandObjectLogEnable (interpreter)));
489 LoadSubCommand ("disable", CommandObjectSP (new CommandObjectLogDisable (interpreter)));
490 LoadSubCommand ("list", CommandObjectSP (new CommandObjectLogList (interpreter)));
491 LoadSubCommand ("timers", CommandObjectSP (new CommandObjectLogTimer (interpreter)));