Home | History | Annotate | Download | only in UefiShellLevel2CommandsLib

Lines Matching defs:String

40   CONST CHAR16  *String;

83 String = ShellCommandLineGetValue(Package, L"-w");
84 if (String != NULL) {
85 gRT->ResetSystem(EfiResetWarm, EFI_SUCCESS, StrSize(String), (VOID*)String);
95 String = ShellCommandLineGetValue(Package, L"-s");
96 DEBUG_CODE(ShellPrintEx(-1,-1,L"Reset with %s (%d bytes)", String, String!=NULL?StrSize(String):0););
97 if (String != NULL) {
98 gRT->ResetSystem(EfiResetShutdown, EFI_SUCCESS, StrSize(String), (VOID*)String);
107 String = ShellCommandLineGetValue(Package, L"-c");
108 if (String != NULL) {
109 gRT->ResetSystem(EfiResetCold, EFI_SUCCESS, StrSize(String), (VOID*)String);