Home | History | Annotate | Download | only in UefiShellLevel2CommandsLib

Lines Matching refs:Package

385   LIST_ENTRY          *Package;

408 Status = ShellCommandLineParseEx (ParamList, &Package, &ProblemParam, TRUE, FALSE);
419 if ((!StreamingUnicode && (ShellCommandLineGetCount(Package) < 4)) ||
420 (ShellCommandLineGetCount(Package) < 3)) {
423 } else if ((StreamingUnicode && (ShellCommandLineGetCount(Package) > 3)) ||
424 (ShellCommandLineGetCount(Package) > 4)) {
430 TableName = ShellCommandLineGetRawValue(Package, 1);
431 ColumnString = ShellCommandLineGetRawValue(Package, 2);
433 FileName = ShellCommandLineGetRawValue(Package, 1);
434 TableName = ShellCommandLineGetRawValue(Package, 2);
435 ColumnString = ShellCommandLineGetRawValue(Package, 3);
437 if (ShellCommandLineGetValue(Package, L"-i") == NULL) {
440 TableNameInstance = ShellStrToUintn(ShellCommandLineGetValue(Package, L"-i"));
442 if (ShellCommandLineGetValue(Package, L"-s") == NULL) {
445 ShellCommandInstance = ShellStrToUintn(ShellCommandLineGetValue(Package, L"-s"));
453 // free the command line package
455 ShellCommandLineFreeVarList (Package);