Home
last modified time | relevance | path

Searched refs:NewCommandLine (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
DShellParametersProtocol.c208 CHAR16 *NewCommandLine; in ParseCommandLineToArgs() local
221 NewCommandLine = AllocateCopyPool(StrSize(CommandLine), CommandLine); in ParseCommandLineToArgs()
222 if (NewCommandLine == NULL){ in ParseCommandLineToArgs()
226 TrimSpaces(&NewCommandLine); in ParseCommandLineToArgs()
227 Size = StrSize(NewCommandLine); in ParseCommandLineToArgs()
230 SHELL_FREE_NON_NULL(NewCommandLine); in ParseCommandLineToArgs()
235 , Walker = (CHAR16*)NewCommandLine in ParseCommandLineToArgs()
254 Walker = (CHAR16*)NewCommandLine; in ParseCommandLineToArgs()
275 SHELL_FREE_NON_NULL(NewCommandLine); in ParseCommandLineToArgs()
703 IN CHAR16 *NewCommandLine, in UpdateStdInStdOutStdErr() argument
[all …]
DShellParametersProtocol.h85 IN CONST CHAR16 *NewCommandLine,
136 IN CHAR16 *NewCommandLine,
DShell.c2123 CHAR16 *NewCommandLine; in DoHelpUpdate() local
2141 NewCommandLine = AllocateZeroPool(NewCmdLineSize); in DoHelpUpdate()
2142 if (NewCommandLine == NULL) { in DoHelpUpdate()
2150 StrnCpyS(NewCommandLine, NewCmdLineSize/sizeof(CHAR16), L"help ", 5); in DoHelpUpdate()
2151 StrnCatS(NewCommandLine, NewCmdLineSize/sizeof(CHAR16), *CmdLine, StrLen(*CmdLine)); in DoHelpUpdate()
2153 *CmdLine = NewCommandLine; in DoHelpUpdate()