Lines Matching refs:interpreter

51   CommandObjectLogEnable(CommandInterpreter &interpreter)  in CommandObjectLogEnable()  argument
52 : CommandObjectParsed(interpreter, "log enable", in CommandObjectLogEnable()
210 CommandObjectLogDisable(CommandInterpreter &interpreter) in CommandObjectLogDisable() argument
211 : CommandObjectParsed(interpreter, "log disable", in CommandObjectLogDisable()
274 CommandObjectLogList(CommandInterpreter &interpreter) in CommandObjectLogList() argument
275 : CommandObjectParsed(interpreter, "log list", in CommandObjectLogList()
324 CommandObjectLogDump(CommandInterpreter &interpreter) in CommandObjectLogDump() argument
325 : CommandObjectParsed(interpreter, "log dump", in CommandObjectLogDump()
434 CommandObjectLogTimerEnable(CommandInterpreter &interpreter) in CommandObjectLogTimerEnable() argument
435 : CommandObjectParsed(interpreter, "log timers enable", in CommandObjectLogTimerEnable()
484 CommandObjectLogTimerDisable(CommandInterpreter &interpreter) in CommandObjectLogTimerDisable() argument
485 : CommandObjectParsed(interpreter, "log timers disable", in CommandObjectLogTimerDisable()
508 CommandObjectLogTimerDump(CommandInterpreter &interpreter) in CommandObjectLogTimerDump() argument
509 : CommandObjectParsed(interpreter, "log timers dump", in CommandObjectLogTimerDump()
530 CommandObjectLogTimerReset(CommandInterpreter &interpreter) in CommandObjectLogTimerReset() argument
531 : CommandObjectParsed(interpreter, "log timers reset", in CommandObjectLogTimerReset()
553 CommandObjectLogTimerIncrement(CommandInterpreter &interpreter) in CommandObjectLogTimerIncrement() argument
554 : CommandObjectParsed(interpreter, "log timers increment", in CommandObjectLogTimerIncrement()
607 CommandObjectLogTimer(CommandInterpreter &interpreter) in CommandObjectLogTimer() argument
608 : CommandObjectMultiword(interpreter, "log timers", in CommandObjectLogTimer()
614 new CommandObjectLogTimerEnable(interpreter))); in CommandObjectLogTimer()
616 interpreter))); in CommandObjectLogTimer()
618 CommandObjectSP(new CommandObjectLogTimerDump(interpreter))); in CommandObjectLogTimer()
620 "reset", CommandObjectSP(new CommandObjectLogTimerReset(interpreter))); in CommandObjectLogTimer()
623 CommandObjectSP(new CommandObjectLogTimerIncrement(interpreter))); in CommandObjectLogTimer()
629 CommandObjectLog::CommandObjectLog(CommandInterpreter &interpreter) in CommandObjectLog() argument
630 : CommandObjectMultiword(interpreter, "log", in CommandObjectLog()
634 CommandObjectSP(new CommandObjectLogEnable(interpreter))); in CommandObjectLog()
636 CommandObjectSP(new CommandObjectLogDisable(interpreter))); in CommandObjectLog()
638 CommandObjectSP(new CommandObjectLogList(interpreter))); in CommandObjectLog()
640 CommandObjectSP(new CommandObjectLogDump(interpreter))); in CommandObjectLog()
642 CommandObjectSP(new CommandObjectLogTimer(interpreter))); in CommandObjectLog()