HomeSort by relevance Sort by last modified time
    Searched refs:Argc (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobRx/
Main.c 21 @param [in] Argc The number of arguments
29 IN int Argc,
38 RetVal = OobRx ( Argc, Argv );
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobTx/
Main.c 21 @param [in] Argc The number of arguments
29 IN int Argc,
38 RetVal = OobTx ( Argc, Argv );
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Rx/
Main.c 21 @param [in] Argc The number of arguments
29 IN int Argc,
38 RetVal = RawIp4Rx ( Argc, Argv );
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Tx/
Main.c 21 @param [in] Argc The number of arguments
29 IN int Argc,
38 RetVal = RawIp4Tx ( Argc, Argv );
  /device/linaro/bootloader/edk2/EmbeddedPkg/EblExternCmd/
Main.c 3 Argc and Argv are passed in via "" of the EBL command line.
29 Entry point with Argc, Argv. Put your code here.
31 @param Argc Number of command arguments in Argv
40 IN UINTN Argc,
47 for (Index = 0; Index < Argc; Index++) {
EntryPointGlue.c 3 ASCII Argc, Argv sytle entry point
27 IN UINTN Argc,
34 /// into Argc, Argv form that calls EblMain().
39 Parse the CmdLine and break it up into Argc (arg count) and Argv (array of
47 @param Argc Returns the number of arguments in the CmdLine current command
48 @param Argv Argc pointers to each string in CmdLine
56 OUT UINTN *Argc,
66 *Argc = 0;
106 *Argc = Arg;
140 UINTN Argc;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Main/
Main.c 28 @param[in] Argc Number of argument tokens pointed to by Argv.
29 @param[in] Argv Array of Argc pointers to command line tokens.
36 IN int Argc,
  /device/linaro/bootloader/edk2/ShellPkg/Application/ShellCTestApp/
ShellCTestApp.c 28 @param[in] Argc The number of items in Argv.
38 IN UINTN Argc,
43 if (Argc == 1) {
46 for (Index = 1; Index < Argc; Index++) {
  /device/linaro/bootloader/edk2/ShellPkg/Include/Library/
ShellCEntryLib.h 25 @param[in] Argc The number of parameters.
35 IN UINTN Argc,
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel1CommandsLib/
Shift.c 46 if (CurrentScriptFile->Argc < 2) {
51 for (LoopVar = 0 ; LoopVar < CurrentScriptFile->Argc ; LoopVar++) {
55 if (LoopVar < CurrentScriptFile->Argc -1) {
61 CurrentScriptFile->Argc--;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetServByName/
GetServByName.c 29 @param[in] Argc The number of arguments
37 IN int Argc,
45 if ( 1 == Argc ) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetServByPort/
GetServByPort.c 30 @param[in] Argc The number of arguments
38 IN int Argc,
46 if (( 2 != Argc )
  /device/linaro/bootloader/edk2/AppPkg/Applications/Hello/
Hello.c 29 IN UINTN Argc,
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
HwIoDebug.c 34 @param Argc Number of command arguments in Argv
44 IN UINTN Argc,
52 if (Argc < 2) {
85 @param Argc Number of command arguments in Argv
95 IN UINTN Argc,
103 if (Argc < 3) {
CmdTemplate.c 27 @param Argc Number of command arguments in Argv
36 IN UINTN Argc,
Network.c 39 IN UINTN Argc,
47 if (Argc == 1) {
68 } else if ((Argv[1][0] == 'r') && (Argc == 2)) {
71 } else if ((Argv[1][0] == 's') && (Argc == 3)) {
  /device/linaro/bootloader/edk2/ShellPkg/Include/Protocol/
EfiShellParameters.h 27 /// Points to an Argc-element array of points to NULL-terminated strings containing
37 UINTN Argc;
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/
Main.c 75 ArgvConvert(UINTN Argc, CHAR16 **Argv)
84 DEBUG((DEBUG_INIT, "ArgvConvert called with %d arguments.\n", Argc));
85 for(count = 0; count < ((Argc > 5)? 5: Argc); ++count) {
90 nArgvSize = Argc;
92 for(count = 0; count < Argc; ++count) {
113 for(count = 0; count < Argc; ++count) {
131 IN UINTN Argc,
175 nArgv = ArgvConvert(Argc, Argv);
182 ExitVal = (INTN)main( (int)Argc, gMD->NArgV);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetHostByDns/
GetHostByDns.c 31 @param [in] Argc The number of arguments
39 IN int Argc,
51 if ( 1 == Argc ) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetNetByAddr/
GetNetByAddr.c 30 @param [in] Argc The number of arguments
38 IN int Argc,
49 if (( 2 != Argc )
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetNetByName/
GetNetByName.c 29 @param[in] Argc The number of arguments
37 IN int Argc,
49 if ( 1 == Argc ) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/SetHostName/
SetHostName.c 31 @param [in] Argc The number of arguments
39 IN int Argc,
53 if ( 1 < Argc ) {
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/EblCmdLib/AArch64/
EblCmdMmu.c 26 IN UINTN Argc,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetAddrInfo/
GetAddrInfo.c 32 @param [in] Argc The number of arguments
40 IN int Argc,
56 if ( 1 == Argc ) {
65 if ( 2 < Argc ) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetNameInfo/
GetNameInfo.c 33 @param [in] Argc The number of arguments
41 IN int Argc,
55 if ( 1 == Argc ) {
64 if ( 2 < Argc ) {

Completed in 2559 milliseconds

1 2 3 4