Searched defs:FullCommandLine (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellParametersProtocol.c238 CHAR16 *FullCommandLine; local
242 FullCommandLine = NULL;
292 Status = SHELL_GET_ENVIRONMENT_VARIABLE(L"ShellOpt", &Size, &FullCommandLine);
294 FullCommandLine = AllocateZeroPool(Size + LoadedImage->LoadOptionsSize);
295 Status = SHELL_GET_ENVIRONMENT_VARIABLE(L"ShellOpt", &Size, &FullCommandLine);
307 ASSERT(FullCommandLine == NULL);
311 Size = LoadedImage->LoadOptionsSize + sizeof(FullCommandLine[0]);
312 FullCommandLine = AllocateZeroPool(Size);
314 if (FullCommandLine != NULL) {
316 StrCpy(FullCommandLine, LoadedImag
[all...]

Completed in 59 milliseconds