Home | History | Annotate | Download | only in Ebl

Lines Matching refs:Cmd

63   @param  Cmd   Command line to archive the history of.

70 IN CHAR8 *Cmd
74 if (AsciiStrLen(Cmd) != 0) {
91 AsciiStrnCpy(&mCmdHistory[mCmdHistoryStart][0], Cmd, MAX_CMD_LINE);
155 pointers to each argument). The Cmd buffer is altered and separators are
376 Collect the keyboard input for a cmd line. Carriage Return, New Line, or ESC
380 The up arrow and down arrow fill Cmd with information from the history
383 @param Cmd Command line to return
384 @param CmdMaxSize Maximum size of Cmd
391 IN OUT CHAR8 *Cmd,
405 Cmd[Index] = '\0';
412 Cmd[Index] = '\0';
435 AsciiStrnCpy (Cmd, History, CmdMaxSize);
437 Cmd[Index++] = Char;
539 EBL_COMMAND_TABLE *Cmd;
548 Cmd = EblGetCommand (Argv[0]);
549 if (Cmd != NULL) {
551 Status = Cmd->Command (Argc, Argv);
556 // pause command got input so don't process any more cmd on this cmd line
559 AsciiPrint ("%a returned %r error\n", Cmd->Name, Status);