Home | History | Annotate | Download | only in EblExternCmd

Lines Matching defs:Argv

3   ASCII Argc, Argv sytle entry point

28 IN CHAR8 **Argv
34 /// into Argc, Argv form that calls EblMain().
39 Parse the CmdLine and break it up into Argc (arg count) and Argv (array of
41 converted to string terminators. This allows Argv to point into CmdLine.
48 @param Argv Argc pointers to each string in CmdLine
57 OUT CHAR8 **Argv
83 // Look for the beginning of an Argv[] entry
85 Argv[Arg++] = ++Char;
89 Argv[Arg++] = Char;
93 // Looking for the terminator of an Argv[] entry
141 CHAR8 *Argv[MAX_ARGS];
148 ParseArguments (ImageInfo->LoadOptions, ImageInfo->LoadOptionsSize, &Argc, Argv);
151 return EblMain (Argc, Argv);