HomeSort by relevance Sort by last modified time
    Searched refs:CmdLine (Results 1 - 16 of 16) sorted by null

  /device/linaro/bootloader/edk2/ArmPlatformPkg/Bds/
BdsHelper.c 20 IN OUT CHAR16 *CmdLine,
34 CmdLine[MaxCmdLine - 1] = '\0';
36 Print (CmdLine);
39 for (CmdLineIndex = StrLen (CmdLine); CmdLineIndex < MaxCmdLine; ) {
55 CmdLine[CmdLineIndex] = '\0';
67 CmdLine[CmdLineIndex++] = Key.UnicodeChar;
77 IN OUT CHAR16 *CmdLine,
84 CmdLine[0] = L'\0';
86 Status = EditHIInputStr (CmdLine, MaxCmdLine);
93 IN OUT CHAR8 *CmdLine,
    [all...]
BdsInternal.h 107 IN OUT CHAR16 *CmdLine,
113 IN OUT CHAR16 *CmdLine,
119 IN OUT CHAR8 *CmdLine,
125 IN OUT CHAR8 *CmdLine,
BootMenu.c 263 CHAR16 CmdLine[BOOT_DEVICE_OPTION_MAX];
317 CopyMem (CmdLine, LinuxDevicePath, MAX (sizeof (CmdLine), StrSize (LinuxDevicePath)));
325 CmdLine[0] = L'\0';
328 CmdLine[0] = L'\0';
332 Status = EditHIInputStr (CmdLine, BOOT_DEVICE_OPTION_MAX);
338 OptionalData = (UINT8*)CmdLine;
339 OptionalDataSize = StrSize (CmdLine);
402 CHAR8 CmdLine[BOOT_DEVICE_OPTION_MAX];
496 CmdLine, BootOption->OptionalData,
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/EblExternCmd/
EntryPointGlue.c 39 Parse the CmdLine and break it up into Argc (arg count) and Argv (array of
41 converted to string terminators. This allows Argv to point into CmdLine.
42 A CmdLine can support multiple commands. The next command in the command line
45 @param CmdLine String to parse for a set of commands
46 @param CmdLineSize Size of CmdLine in bytes
47 @param Argc Returns the number of arguments in the CmdLine current command
48 @param Argv Argc pointers to each string in CmdLine
54 IN CHAR8 *CmdLine,
67 if ((CmdLineSize == 0) || (AsciiStrLen (CmdLine) == 0)) {
75 for (Char = CmdLine, Arg = 0, Index = 0; *Char != '\0' && *Char != CMD_SEPARATOR; Char++, Index++) {
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
Shell.c 195 @param[in] CmdLine The command line to parse.
197 @retval TRUE CmdLine has a valid split.
198 @retval FALSE CmdLine does not have a valid split.
203 IN CONST CHAR16 *CmdLine
210 FirstQuote = FindNextInstance (CmdLine, L"\"", TRUE);
212 TempSpot = FindFirstCharacter(CmdLine, L"|", L'^');
    [all...]
Shell.h 130 @param[in,out] CmdLine pointer to the command line to update
139 IN OUT CHAR16 **CmdLine
277 @param[in] CmdLine the command line to parse
285 IN CONST CHAR16 *CmdLine
294 @param[in] CmdLine The command line to parse.
303 IN CONST CHAR16 *CmdLine,
342 @param[in] CmdLine the command line to run.
352 IN CONST CHAR16 *CmdLine,
  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
Main.c 154 Parse the CmdLine and break it up into Argc (arg count) and Argv (array of
156 converted to string terminators. This allows Argv to point into CmdLine.
157 A CmdLine can support multiple commands. The next command in the command line
160 @param CmdLine String to parse for a set of commands
161 @param Argc Returns the number of arguments in the CmdLine current command
162 @param Argv Argc pointers to each string in CmdLine
168 IN CHAR8 *CmdLine,
179 if (AsciiStrLen (CmdLine) == 0) {
186 for (Char = CmdLine, Arg = 0; *Char != '\0'; Char++) {
526 @param CmdLine Command Line to process.
    [all...]
Ebl.h 178 IN CHAR8 *CmdLine,
185 IN CHAR8 *CmdLine,
  /system/chre/platform/linux/
init.cc 30 #include <tclap/CmdLine.h>
57 TCLAP::CmdLine cmd(kSimDescription, ' ', kSimVersion);
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
UpdateBuildVersions.py 75 def ShellCommandResults(CmdLine, Opt):
83 subprocess.check_call(args=shlex.split(CmdLine), stderr=subprocess.STDOUT, stdout=file_list)
97 sys.stderr.write("ERROR : this command failed : %s\n" % CmdLine)
107 sys.stderr.write("ERROR : this command failed : %s\n" % CmdLine)
116 sys.stderr.write("ERROR : Command terminated by user : %s\n" % CmdLine)
205 CmdLine = "svn revert %s" % Filename.replace("\\", "/").strip()
207 subprocess.check_output(args=shlex.split(CmdLine))
216 sys.stderr.write("ERROR : this command failed : %s\n" % CmdLine)
222 sys.stderr.write("ERROR : this command failed : %s\n" % CmdLine)
227 sys.stderr.write("ERROR : Command terminated by user : %s\n" % CmdLine)
    [all...]
  /external/llvm/lib/Fuzzer/
FuzzerUtil.cpp 116 const char *CmdLine = nullptr;
118 CmdLine = "nproc";
120 CmdLine = "sysctl -n hw.ncpu";
125 FILE *F = popen(CmdLine, "r");
130 CmdLine, __func__);
137 CmdLine, __func__);
143 N, CmdLine, __func__);
  /device/linaro/bootloader/edk2/ArmPkg/Application/LinuxLoader/Arm/
LinuxAtag.c 58 IN CONST CHAR8 *CmdLine
64 LineLength = AsciiStrLen (CmdLine) + 1;
75 AsciiStrCpy (mLinuxKernelCurrentAtag->body.cmdline_tag.cmdline, CmdLine);
  /prebuilts/go/darwin-x86/src/syscall/
exec_windows.go 223 CmdLine string // used if non-empty, else the windows command line is built by escaping the arguments passed to StartProcess
267 var cmdline string
269 // use attr.CmdLine if set, else build the command line by escaping
271 if sys.CmdLine != "" {
272 cmdline = sys.CmdLine
274 cmdline = makeCmdLine(argv)
278 if len(cmdline) != 0 {
279 argvp, err = UTF16PtrFromString(cmdline)
  /prebuilts/go/linux-x86/src/syscall/
exec_windows.go 223 CmdLine string // used if non-empty, else the windows command line is built by escaping the arguments passed to StartProcess
267 var cmdline string
269 // use attr.CmdLine if set, else build the command line by escaping
271 if sys.CmdLine != "" {
272 cmdline = sys.CmdLine
274 cmdline = makeCmdLine(argv)
278 if len(cmdline) != 0 {
279 argvp, err = UTF16PtrFromString(cmdline)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
BuildEngine.py 140 for CmdLine in Command:
141 self.MacroList.extend(gMacroRefPattern.findall(CmdLine))
143 self.CommandList.append(CmdLine)
  /external/llvm/utils/FileCheck/
FileCheck.cpp 892 std::unique_ptr<MemoryBuffer> CmdLine = MemoryBuffer::getMemBufferCopy(
896 CmdLine->getBuffer().substr(Prefix.size(), PatternString.size());
897 SM.AddNewSourceBuffer(std::move(CmdLine), SMLoc());
    [all...]

Completed in 536 milliseconds