HomeSort by relevance Sort by last modified time
    Searched defs:Cmd (Results 1 - 25 of 38) sorted by null

1 2

  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
CmdTemplate.c 35 Ebl%CommandName%Cmd (
50 Ebl%CommandName%Cmd
59 EblInitialize%CommandName%Cmd (
Main.c 63 @param Cmd Command line to archive the history of.
70 IN CHAR8 *Cmd
74 if (AsciiStrLen(Cmd) != 0) {
91 AsciiStrnCpy(&mCmdHistory[mCmdHistoryStart][0], Cmd, MAX_CMD_LINE);
155 pointers to each argument). The Cmd buffer is altered and separators are
376 Collect the keyboard input for a cmd line. Carriage Return, New Line, or ESC
380 The up arrow and down arrow fill Cmd with information from the history
383 @param Cmd Command line to return
384 @param CmdMaxSize Maximum size of Cmd
391 IN OUT CHAR8 *Cmd,
    [all...]
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 89 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin());
90 if (StringRef(Cmd.getCreator().getName()) != "clang") {
95 const ArgStringList &CCArgs = Cmd.getArguments();
  /device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm2CommandLib/
Tpm2Test.c 53 TPM2_SELF_TEST_COMMAND Cmd;
57 Cmd.Header.tag = SwapBytes16(TPM_ST_NO_SESSIONS);
58 Cmd.Header.paramSize = SwapBytes32(sizeof(Cmd));
59 Cmd.Header.commandCode = SwapBytes32(TPM_CC_SelfTest);
60 Cmd.FullTest = FullTest;
63 Status = Tpm2SubmitCommand (sizeof(Cmd), (UINT8 *)&Cmd, &ResultBufSize, (UINT8 *)&Res);
Tpm2Startup.c 59 TPM2_STARTUP_COMMAND Cmd;
64 Cmd.Header.tag = SwapBytes16(TPM_ST_NO_SESSIONS);
65 Cmd.Header.paramSize = SwapBytes32(sizeof(Cmd));
66 Cmd.Header.commandCode = SwapBytes32(TPM_CC_Startup);
67 Cmd.StartupType = SwapBytes16(StartupType);
70 Status = Tpm2SubmitCommand (sizeof(Cmd), (UINT8 *)&Cmd, &ResultBufSize, (UINT8 *)&Res);
102 TPM2_SHUTDOWN_COMMAND Cmd;
106 Cmd.Header.tag = SwapBytes16(TPM_ST_NO_SESSIONS);
    [all...]
Tpm2Sequences.c 105 TPM2_HASH_SEQUENCE_START_COMMAND Cmd;
112 ZeroMem(&Cmd, sizeof(Cmd));
117 Cmd.Header.tag = SwapBytes16(TPM_ST_NO_SESSIONS);
118 Cmd.Header.commandCode = SwapBytes32(TPM_CC_HashSequenceStart);
120 Buffer = (UINT8 *)&Cmd.Auth;
130 CmdSize = (UINT32)(Buffer - (UINT8 *)&Cmd);
131 Cmd.Header.paramSize = SwapBytes32(CmdSize);
137 Status = Tpm2SubmitCommand (CmdSize, (UINT8 *)&Cmd, &ResultBufSize, (UINT8 *)&Res);
193 TPM2_SEQUENCE_UPDATE_COMMAND Cmd;
    [all...]
Tpm2Hierarchy.c 229 TPM2_CLEAR_COMMAND Cmd;
237 Cmd.Header.tag = SwapBytes16(TPM_ST_SESSIONS);
238 Cmd.Header.commandCode = SwapBytes32(TPM_CC_Clear);
239 Cmd.AuthHandle = SwapBytes32(AuthHandle);
244 Buffer = (UINT8 *)&Cmd.AuthSession;
249 Cmd.AuthorizationSize = SwapBytes32(SessionInfoSize);
251 CmdSize = (UINT32)(Buffer - (UINT8 *)&Cmd);
252 Cmd.Header.paramSize = SwapBytes32(CmdSize);
255 Status = Tpm2SubmitCommand (CmdSize, (UINT8 *)&Cmd, &ResultBufSize, (UINT8 *)&Res);
294 ZeroMem (&Cmd, sizeof(Cmd));
    [all...]
Tpm2Integrity.c 104 TPM2_PCR_EXTEND_COMMAND Cmd;
114 Cmd.Header.tag = SwapBytes16(TPM_ST_SESSIONS);
115 Cmd.Header.commandCode = SwapBytes32(TPM_CC_PCR_Extend);
116 Cmd.PcrHandle = SwapBytes32(PcrHandle);
122 Buffer = (UINT8 *)&Cmd.AuthSessionPcr;
127 Cmd.AuthorizationSize = SwapBytes32(SessionInfoSize);
150 CmdSize = (UINT32)((UINTN)Buffer - (UINTN)&Cmd);
151 Cmd.Header.paramSize = SwapBytes32(CmdSize);
154 Status = Tpm2SubmitCommand (CmdSize, (UINT8 *)&Cmd, &ResultBufSize, (UINT8 *)&Res);
214 TPM2_PCR_EVENT_COMMAND Cmd;
    [all...]
  /prebuilts/go/darwin-x86/src/net/textproto/
textproto.go 89 // Cmd is a convenience method that sends a command after
92 // Cmd returns the id of the command, for use with StartResponse and EndResponse.
97 // id, err := c.Cmd("HELP")
114 func (c *Conn) Cmd(format string, args ...interface{}) (id uint, err error) {
  /prebuilts/go/linux-x86/src/net/textproto/
textproto.go 89 // Cmd is a convenience method that sends a command after
92 // Cmd returns the id of the command, for use with StartResponse and EndResponse.
97 // id, err := c.Cmd("HELP")
114 func (c *Conn) Cmd(format string, args ...interface{}) (id uint, err error) {
  /external/clang/examples/clang-interpreter/
main.cpp 122 const driver::Command &Cmd = cast<driver::Command>(*Jobs.begin());
123 if (llvm::StringRef(Cmd.getCreator().getName()) != "clang") {
129 const driver::ArgStringList &CCArgs = Cmd.getArguments();
  /device/linaro/bootloader/edk2/EmbeddedPkg/Universal/MmcDxe/
MmcBlockIo.c 132 IN UINTN Cmd,
157 Status = MmcHost->SendCommand (MmcHost, Cmd, CmdArg);
159 DEBUG ((EFI_D_ERROR, "%a(MMC_CMD%d): Error %r\n", __func__, Cmd, Status));
232 UINTN Cmd;
310 Cmd = MMC_CMD17;
313 Cmd = MMC_CMD18;
318 Cmd = MMC_CMD24;
321 Cmd = MMC_CMD25;
329 Status = MmcTransferBlock (This, Cmd, Transfer, MediaId, Lba, ConsumeSize, Buffer);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None:
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/PL180MciDxe/
PL180Mci.c 118 UINT32 Cmd;
132 Cmd = (MMC_GET_INDX (MmcCmd) & INDX_MASK) | MCI_CPSM_ENABLE;
134 Cmd |= MCI_CPSM_WAIT_RESPONSE;
138 Cmd |= MCI_CPSM_LONG_RESPONSE;
148 MmioWrite32 (MCI_COMMAND_REG, Cmd);
150 DoneMask = (Cmd & MCI_CPSM_WAIT_RESPONSE)
162 DEBUG ((EFI_D_ERROR, "MciSendCommand(CmdIndex:%d) Start bit Error! Response:0x%X Status:0x%x\n", (Cmd & 0x3F), MmioRead32 (MCI_RESPONSE0_REG), Status));
165 //DEBUG ((EFI_D_ERROR, "MciSendCommand(CmdIndex:%d) TIMEOUT! Response:0x%X Status:0x%x\n", (Cmd & 0x3F), MmioRead32 (MCI_RESPONSE0_REG), Status));
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None
    [all...]
  /prebuilts/go/darwin-x86/src/os/exec/
exec.go 39 // Cmd represents an external command being prepared or run.
41 // A Cmd cannot be reused after calling its Run, Output or CombinedOutput
43 type Cmd struct {
117 // Command returns the Cmd struct to execute the named program with
126 // The returned Cmd's Args field is constructed from the command name
130 func Command(name string, arg ...string) *Cmd {
131 cmd := &Cmd{
137 cmd.lookPathErr = err
139 cmd.Path = l
    [all...]
  /prebuilts/go/linux-x86/src/os/exec/
exec.go 39 // Cmd represents an external command being prepared or run.
41 // A Cmd cannot be reused after calling its Run, Output or CombinedOutput
43 type Cmd struct {
117 // Command returns the Cmd struct to execute the named program with
126 // The returned Cmd's Args field is constructed from the command name
130 func Command(name string, arg ...string) *Cmd {
131 cmd := &Cmd{
137 cmd.lookPathErr = err
139 cmd.Path = l
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cmd.py 50 __all__ = ["Cmd"]
52 PROMPT = '(Cmd) '
55 class Cmd:
61 A Cmd instance or subclass instance is a line-oriented interpreter
62 framework. There is no good reason to instantiate Cmd itself; rather,
64 in order to inherit Cmd's methods and encapsulate action methods.
193 cmd, arg = line[:i], line[i:].strip()
194 return cmd, arg, line
206 cmd, arg, line = self.parseline(line)
209 if cmd is None
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Mmc/DwEmmcDxe/
DwEmmcDxe.c 312 UINT32 Cmd = 0;
317 Cmd = BIT_CMD_SEND_INIT;
320 Cmd = BIT_CMD_RESPONSE_EXPECT;
323 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_LONG_RESPONSE |
327 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
332 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC;
334 Cmd = 0;
337 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
342 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
346 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Mmc/DwSdDxe/
DwSdDxe.c 337 UINT32 Cmd = 0;
344 //Cmd = BIT_CMD_SEND_INIT;
345 Cmd = BIT_CMD_WAIT_PRVDATA_COMPLETE;
348 Cmd = BIT_CMD_RESPONSE_EXPECT;
351 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_LONG_RESPONSE |
355 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
360 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
363 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
371 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
374 Cmd = 0
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
MultiThread.c 723 INT8 Cmd[MAX_PATH];
887 sprintf (Cmd, "type %s\\%s_%s_%d.txt 2>NUL", mLogDir, mBuildingList->BaseName,
890 if (system (Cmd)) {
891 Error (NULL, 0, 0, NULL, "failed to run \"%s\"", Cmd);
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 336 auto Cmd = CompileCommandRef(Directory, File, *Command);
337 IndexByFile[NativeFilePath].push_back(Cmd);
338 AllCommands.push_back(Cmd);

Completed in 272 milliseconds

1 2