Home | History | Annotate | Download | only in Ebl

Lines Matching full:argv

28   Argv[0] - "ioread"[.#] # is optional width 1, 2, or 4. Default 1

29 Argv[1] - Hex IO address
34 @param Argc Number of command arguments in Argv
35 @param Argv Array of strings that represent the parsed command line.
36 Argv[0] is the command name
45 IN CHAR8 **Argv
56 Port = AsciiStrHexToUintn (Argv[1]);
57 Width = WidthFromCommandName (Argv[0], 1);
78 Argv[0] - "iowrite"[.#] # is optional width 1, 2, or 4. Default 1
79 Argv[1] - Hex IO address
80 Argv[2] - Hex data to write
85 @param Argc Number of command arguments in Argv
86 @param Argv Array of strings that represent the parsed command line.
87 Argv[0] is the command name
96 IN CHAR8 **Argv
107 Port = AsciiStrHexToUintn (Argv[1]);
108 Data = AsciiStrHexToUintn (Argv[2]);
109 Width = WidthFromCommandName (Argv[0], 1);