Home | History | Annotate | Download | only in UefiShellBcfgCommandLib

Lines Matching refs:CurrentParam

1186   CONST CHAR16          *CurrentParam;

1284 CurrentParam = ShellCommandLineGetRawValue(Package, ParamNumber);
1285 if (gUnicodeCollation->StriColl(gUnicodeCollation, (CHAR16*)CurrentParam, L"dump") == 0) {
1290 } else if (gUnicodeCollation->StriColl(gUnicodeCollation, (CHAR16*)CurrentParam, L"add") == 0) {
1296 CurrentParam = ShellCommandLineGetRawValue(Package, ++ParamNumber);
1297 if (CurrentParam == NULL || !ShellIsHexOrDecimalNumber(CurrentParam, TRUE, FALSE)) {
1298 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellBcfgHiiHandle, L"bcfg", CurrentParam);
1301 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
1308 } else if (gUnicodeCollation->StriColl(gUnicodeCollation, (CHAR16*)CurrentParam, L"addp") == 0) {
1314 CurrentParam = ShellCommandLineGetRawValue(Package, ++ParamNumber);
1315 if (CurrentParam == NULL || !ShellIsHexOrDecimalNumber(CurrentParam, TRUE, FALSE)) {
1316 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellBcfgHiiHandle, L"bcfg", CurrentParam);
1319 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
1326 } else if (gUnicodeCollation->StriColl(gUnicodeCollation, (CHAR16*)CurrentParam, L"addh") == 0) {
1332 CurrentParam = ShellCommandLineGetRawValue(Package, ++ParamNumber);
1333 if (CurrentParam == NULL || !ShellIsHexOrDecimalNumber(CurrentParam, TRUE, FALSE)) {
1334 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellBcfgHiiHandle, L"bcfg", CurrentParam);
1337 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
1339 CurrentParam = ShellCommandLineGetRawValue(Package, ++ParamNumber);
1340 if (CurrentParam == NULL || !ShellIsHexOrDecimalNumber(CurrentParam, TRUE, FALSE)) {
1341 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellBcfgHiiHandle, L"bcfg", CurrentParam);
1344 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
1350 } else if (gUnicodeCollation->StriColl(gUnicodeCollation, (CHAR16*)CurrentParam, L"rm") == 0) {
1356 CurrentParam = ShellCommandLineGetRawValue(Package, ++ParamNumber);
1357 if (CurrentParam == NULL || !ShellIsHexOrDecimalNumber(CurrentParam, TRUE, FALSE)) {
1358 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellBcfgHiiHandle, L"bcfg", CurrentParam);
1361 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
1368 } else if (gUnicodeCollation->StriColl(gUnicodeCollation, (CHAR16*)CurrentParam, L"mv") == 0) {
1374 CurrentParam = ShellCommandLineGetRawValue(Package, ++ParamNumber);
1375 if (CurrentParam == NULL || !ShellIsHexOrDecimalNumber(CurrentParam, TRUE, FALSE)) {
1376 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellBcfgHiiHandle, L"bcfg", CurrentParam);
1379 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
1385 CurrentParam = ShellCommandLineGetRawValue(Package, ++ParamNumber);
1386 if (CurrentParam == NULL || !ShellIsHexOrDecimalNumber(CurrentParam, TRUE, FALSE)) {
1387 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellBcfgHiiHandle, L"bcfg", CurrentParam);
1390 Status = ShellConvertStringToUint64(CurrentParam, &Intermediate, TRUE, FALSE);
1402 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_GEN_PARAM_INV), gShellBcfgHiiHandle, L"bcfg", CurrentParam);