Lines Matching refs:interpreter

51   CommandObjectLogEnable(CommandInterpreter &interpreter)  in CommandObjectLogEnable()  argument
52 : CommandObjectParsed(interpreter, "log enable", in CommandObjectLogEnable()
223 CommandObjectLogDisable(CommandInterpreter &interpreter) in CommandObjectLogDisable() argument
224 : CommandObjectParsed(interpreter, "log disable", in CommandObjectLogDisable()
286 CommandObjectLogList(CommandInterpreter &interpreter) in CommandObjectLogList() argument
287 : CommandObjectParsed(interpreter, "log list", in CommandObjectLogList()
335 CommandObjectLogDump(CommandInterpreter &interpreter) in CommandObjectLogDump() argument
336 : CommandObjectParsed(interpreter, "log dump", in CommandObjectLogDump()
443 CommandObjectLogTimerEnable(CommandInterpreter &interpreter) in CommandObjectLogTimerEnable() argument
444 : CommandObjectParsed(interpreter, "log timers enable", in CommandObjectLogTimerEnable()
492 CommandObjectLogTimerDisable(CommandInterpreter &interpreter) in CommandObjectLogTimerDisable() argument
493 : CommandObjectParsed(interpreter, "log timers disable", in CommandObjectLogTimerDisable()
515 CommandObjectLogTimerDump(CommandInterpreter &interpreter) in CommandObjectLogTimerDump() argument
516 : CommandObjectParsed(interpreter, "log timers dump", in CommandObjectLogTimerDump()
536 CommandObjectLogTimerReset(CommandInterpreter &interpreter) in CommandObjectLogTimerReset() argument
537 : CommandObjectParsed(interpreter, "log timers reset", in CommandObjectLogTimerReset()
558 CommandObjectLogTimerIncrement(CommandInterpreter &interpreter) in CommandObjectLogTimerIncrement() argument
559 : CommandObjectParsed(interpreter, "log timers increment", in CommandObjectLogTimerIncrement()
611 CommandObjectLogTimer(CommandInterpreter &interpreter) in CommandObjectLogTimer() argument
612 : CommandObjectMultiword(interpreter, "log timers", in CommandObjectLogTimer()
618 new CommandObjectLogTimerEnable(interpreter))); in CommandObjectLogTimer()
620 interpreter))); in CommandObjectLogTimer()
622 CommandObjectSP(new CommandObjectLogTimerDump(interpreter))); in CommandObjectLogTimer()
624 "reset", CommandObjectSP(new CommandObjectLogTimerReset(interpreter))); in CommandObjectLogTimer()
627 CommandObjectSP(new CommandObjectLogTimerIncrement(interpreter))); in CommandObjectLogTimer()
633 CommandObjectLog::CommandObjectLog(CommandInterpreter &interpreter) in CommandObjectLog() argument
634 : CommandObjectMultiword(interpreter, "log", in CommandObjectLog()
638 CommandObjectSP(new CommandObjectLogEnable(interpreter))); in CommandObjectLog()
640 CommandObjectSP(new CommandObjectLogDisable(interpreter))); in CommandObjectLog()
642 CommandObjectSP(new CommandObjectLogList(interpreter))); in CommandObjectLog()
644 CommandObjectSP(new CommandObjectLogDump(interpreter))); in CommandObjectLog()
646 CommandObjectSP(new CommandObjectLogTimer(interpreter))); in CommandObjectLog()