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()
323 CommandObjectLogDump(CommandInterpreter &interpreter) in CommandObjectLogDump() argument
324 : CommandObjectParsed(interpreter, "log dump", in CommandObjectLogDump()
419 CommandObjectLogTimerEnable(CommandInterpreter &interpreter) in CommandObjectLogTimerEnable() argument
420 : CommandObjectParsed(interpreter, "log timers enable", in CommandObjectLogTimerEnable()
456 CommandObjectLogTimerDisable(CommandInterpreter &interpreter) in CommandObjectLogTimerDisable() argument
457 : CommandObjectParsed(interpreter, "log timers disable", in CommandObjectLogTimerDisable()
479 CommandObjectLogTimerDump(CommandInterpreter &interpreter) in CommandObjectLogTimerDump() argument
480 : CommandObjectParsed(interpreter, "log timers dump", in CommandObjectLogTimerDump()
500 CommandObjectLogTimerReset(CommandInterpreter &interpreter) in CommandObjectLogTimerReset() argument
501 : CommandObjectParsed(interpreter, "log timers reset", in CommandObjectLogTimerReset()
522 CommandObjectLogTimerIncrement(CommandInterpreter &interpreter) in CommandObjectLogTimerIncrement() argument
523 : CommandObjectParsed(interpreter, "log timers increment", in CommandObjectLogTimerIncrement()
563 CommandObjectLogTimer(CommandInterpreter &interpreter) in CommandObjectLogTimer() argument
564 : CommandObjectMultiword(interpreter, "log timers", in CommandObjectLogTimer()
570 new CommandObjectLogTimerEnable(interpreter))); in CommandObjectLogTimer()
572 interpreter))); in CommandObjectLogTimer()
574 CommandObjectSP(new CommandObjectLogTimerDump(interpreter))); in CommandObjectLogTimer()
576 "reset", CommandObjectSP(new CommandObjectLogTimerReset(interpreter))); in CommandObjectLogTimer()
579 CommandObjectSP(new CommandObjectLogTimerIncrement(interpreter))); in CommandObjectLogTimer()
585 CommandObjectLog::CommandObjectLog(CommandInterpreter &interpreter) in CommandObjectLog() argument
586 : CommandObjectMultiword(interpreter, "log", in CommandObjectLog()
590 CommandObjectSP(new CommandObjectLogEnable(interpreter))); in CommandObjectLog()
592 CommandObjectSP(new CommandObjectLogDisable(interpreter))); in CommandObjectLog()
594 CommandObjectSP(new CommandObjectLogList(interpreter))); in CommandObjectLog()
596 CommandObjectSP(new CommandObjectLogDump(interpreter))); in CommandObjectLog()
598 CommandObjectSP(new CommandObjectLogTimer(interpreter))); in CommandObjectLog()