Searched refs:Argv (Results 1 - 25 of 39) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/OobRx/
H A DMain.c22 @param [in] Argv The argument value array
30 IN char **Argv
38 RetVal = OobRx ( Argc, Argv );
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/OobTx/
H A DMain.c22 @param [in] Argv The argument value array
30 IN char **Argv
38 RetVal = OobTx ( Argc, Argv );
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/RawIp4Rx/
H A DMain.c22 @param [in] Argv The argument value array
30 IN char **Argv
38 RetVal = RawIp4Rx ( Argc, Argv );
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/RawIp4Tx/
H A DMain.c22 @param [in] Argv The argument value array
30 IN char **Argv
38 RetVal = RawIp4Tx ( Argc, Argv );
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Main/
H A DMain.c25 The easiest way to access the command line parameters is to cast Argv as:
26 wchar_t **wArgv = (wchar_t **)Argv;
28 @param[in] Argc Number of argument tokens pointed to by Argv.
29 @param[in] Argv Array of Argc pointers to command line tokens.
38 IN char **Argv
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Library/
H A DShellCEntryLib.h26 @param[in] Argv The array of pointers to parameters.
36 IN CHAR16 **Argv
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetServByName/
H A DGetServByName.c33 @param [in] Argv The argument value array
41 IN char **Argv
53 Print ( L"%a <service name>\r\n", Argv[0]);
59 pService = getservbyname ( Argv[1], NULL );
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetHostByDns/
H A DGetHostByDns.c35 @param [in] Argv The argument value array
43 IN char **Argv
52 Argv[0]));
59 Print ( L"%a <host name>\r\n", Argv[0]);
65 pHost = _gethostbydnsname ( Argv[1], AF_INET );
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetNetByName/
H A DGetNetByName.c33 @param [in] Argv The argument value array
41 IN char **Argv
50 Argv[0]));
57 Print ( L"%a <network name>\r\n", Argv[0]);
63 pNetwork = getnetbyname ( Argv[1]);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/SetHostName/
H A DSetHostName.c32 @param [in] Argv The argument value array
40 IN char **Argv
47 Argv[0]));
57 AppStatus = sethostname ( Argv[1], strlen ( Argv[1]));
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel1CommandsLib/
H A DShift.c52 SHELL_FREE_NON_NULL(CurrentScriptFile->Argv[LoopVar]);
55 CurrentScriptFile->Argv[LoopVar] = CurrentScriptFile->Argv[LoopVar+1];
57 CurrentScriptFile->Argv[LoopVar] = NULL;
H A DFor.c336 if (gEfiShellParametersProtocol->Argv[1][0] != L'%' || gEfiShellParametersProtocol->Argv[1][2] != CHAR_NULL
337 ||!((gEfiShellParametersProtocol->Argv[1][1] >= L'a' && gEfiShellParametersProtocol->Argv[1][1] <= L'z')
338 ||(gEfiShellParametersProtocol->Argv[1][1] >= L'A' && gEfiShellParametersProtocol->Argv[1][1] <= L'Z'))
340 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_INV_VAR), gShellLevel1HiiHandle, gEfiShellParametersProtocol->Argv[1]);
347 gEfiShellParametersProtocol->Argv[2]) == 0) {
355 if (StrStr(gEfiShellParametersProtocol->Argv[LoopVar], L"*") != NULL
356 ||StrStr(gEfiShellParametersProtocol->Argv[LoopVa
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/ShellCTestApp/
H A DShellCTestApp.c28 @param[in] Argc The number of items in Argv.
29 @param[in] Argv Array of pointers to strings.
39 IN CHAR16 **Argv
46 Print(L"Argv[%d]: %s\n", Index, Argv[Index]);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetNetByAddr/
H A DGetNetByAddr.c31 @param [in] Argv The argument value array
39 IN char **Argv
50 || ( 4 != sscanf ( Argv[1],
60 Print ( L"%a <IPv4 Address>\r\n", Argv[0]);
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetServByPort/
H A DGetServByPort.c34 @param [in] Argv The argument value array
42 IN char **Argv
54 || ( 1 != sscanf ( Argv[1], "%d", &PortNumber ))) {
55 Print ( L"%a <port number>\r\n", Argv[0]);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/EfiRom/
H A DEfiRom.c32 char *Argv[]
46 Argv - standard C main() argument list
71 if (ParseCommandLine (Argc, Argv, &mOptions)) {
837 char *Argv[],
844 Given the Argc/Argv program arguments, and a pointer to an options structure,
851 Argv[] - standard C main() argument list
889 Argv++;
899 if ((stricmp(Argv[0], "-h") == 0) || (stricmp(Argv[0], "--help") == 0)) {
904 if ((stricmp(Argv[
835 ParseCommandLine( int Argc, char *Argv[], OPTIONS *Options ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrCompiler.cpp62 IN CHAR8 **Argv
93 for (Index = 1; (Index < Argc) && (Argv[Index][0] == '-'); Index++) {
94 if ((stricmp(Argv[Index], "-h") == 0) || (stricmp(Argv[Index], "--help") == 0)) {
98 } else if (stricmp(Argv[Index], "-l") == 0) {
101 } else if (stricmp(Argv[Index], "-i") == 0) {
103 if ((Index >= Argc) || (Argv[Index][0] == '-')) {
108 AppendIncludePath(Argv[Index]);
109 } else if (stricmp(Argv[Index], "-o") == 0 || stricmp(Argv[Inde
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Hello/
H A DHello.c30 IN CHAR16 **Argv
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetHostByName/
H A DGetHostByName.c33 @param [in] Argv The argument value array
41 IN char **Argv
52 Argv[0]));
59 Print ( L"%a <host name>\r\n", Argv[0]);
65 pHost = gethostbyname ( Argv[1]);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Protocol/
H A DEfiShellParameters.h32 CHAR16 **Argv; member in struct:_EFI_SHELL_PARAMETERS_PROTOCOL
35 /// The number of elements in the Argv array.
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/RecvDgram/
H A DRecvDgram.c34 @param [in] Argv The argument value array
42 IN char **Argv
55 Argv[0]));
113 Argv[0],
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Main/
H A DMain.c72 /* Create mbcs versions of the Argv strings. */
75 ArgvConvert(UINTN Argc, CHAR16 **Argv) argument
81 INTN nArgvSize; /* Cumulative size of narrow Argv[i] */
86 Print(L"Argument[%d] = \"%s\".\n", count, Argv[count]);
91 /* Determine space needed for narrow Argv strings. */
93 AVsz = wcstombs(NULL, Argv[count], ARG_MAX);
95 Print(L"ABORTING: Argv[%d] contains an unconvertable character.\n", count);
115 AVsz = wcstombs(string, Argv[count], nArgvSize);
117 DEBUG((DEBUG_INFO, "Cvt[%d] %d \"%s\" --> \"%a\"\n", (INT32)count, (INT32)AVsz, Argv[count], nArgv[count]));
121 Print(L"ABORTING: Internal Argv[
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/GetHostByAddr/
H A DGetHostByAddr.c34 @param [in] Argv The argument value array
42 IN char **Argv
56 || ( 4 != sscanf ( Argv[1],
66 Print ( L"%a <IPv4 Address>\r\n", Argv[0]);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCEntryLib/
H A DUefiShellCEntryLib.c69 EfiShellParametersProtocol->Argv
88 EfiShellInterface->Argv
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/SetSockOpt/
H A DSetSockOpt.c235 @param [in] Argv The argument value array
243 IN char **Argv
255 Argv[0]));
264 if ( 0 == strcmp ( Argv[1], pOption->pOptionName )) {
270 Print ( L"ERROR: Invalid option: %a\r\n", Argv[1]);
279 Print ( L"%a <option>\r\n", Argv[0]);
297 || ( 0 < ( BytesToWrite = GetOptionValue ( pOption, Argv[2])))) {
375 Argv[0],

Completed in 55 milliseconds

12