Home | History | Annotate | Download | only in UefiShellLevel2CommandsLib

Lines Matching defs:String

41   CONST CHAR16  *String;

120 String = ShellCommandLineGetValue(Package, L"-w");
121 if (String != NULL) {
122 gRT->ResetSystem(EfiResetWarm, EFI_SUCCESS, StrSize(String), (VOID*)String);
132 String = ShellCommandLineGetValue(Package, L"-s");
133 DEBUG_CODE(ShellPrintEx(-1,-1,L"Reset with %s (%d bytes)", String, String!=NULL?StrSize(String):0););
134 if (String != NULL) {
135 gRT->ResetSystem(EfiResetShutdown, EFI_SUCCESS, StrSize(String), (VOID*)String);
144 String = ShellCommandLineGetValue(Package, L"-c");
145 if (String != NULL) {
146 gRT->ResetSystem(EfiResetCold, EFI_SUCCESS, StrSize(String), (VOID*)String);