HomeSort by relevance Sort by last modified time
    Searched defs:Cmd (Results 1 - 25 of 49) 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 (
  /device/google/cuttlefish_common/common/commands/wifi_relay/
cmd.cpp 16 #include "common/commands/wifi_relay/cmd.h"
20 Cmd::Cmd() : msg_(nlmsg_alloc()) {}
22 Cmd::Cmd(nlmsghdr* h) : msg_(nlmsg_convert(h)) {}
24 Cmd::Cmd(nl_msg* h) {
29 Cmd::~Cmd() {
36 bool Cmd::OnResponse(nl_msg* msg)
    [all...]
cmd.h 28 class Cmd {
30 Cmd();
31 explicit Cmd(nlmsghdr* h);
32 explicit Cmd(nl_msg* h);
33 ~Cmd();
35 // Cmd() creates netlink request to be sent to kernel.
59 Cmd(const Cmd&) = delete;
60 Cmd& operator=(const Cmd&) = delete
    [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 60 TPM2_STARTUP_COMMAND Cmd;
65 Cmd.Header.tag = SwapBytes16(TPM_ST_NO_SESSIONS);
66 Cmd.Header.paramSize = SwapBytes32(sizeof(Cmd));
67 Cmd.Header.commandCode = SwapBytes32(TPM_CC_Startup);
68 Cmd.StartupType = SwapBytes16(StartupType);
71 Status = Tpm2SubmitCommand (sizeof(Cmd), (UINT8 *)&Cmd, &ResultBufSize, (UINT8 *)&Res);
106 TPM2_SHUTDOWN_COMMAND Cmd;
110 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...]
  /build/soong/ui/build/
exec.go 21 // Cmd is a wrapper of os/exec.Cmd that integrates with the build context for
24 type Cmd struct {
25 *exec.Cmd
35 func Command(ctx Context, config Config, name string, executable string, args ...string) *Cmd {
36 ret := &Cmd{
37 Cmd: exec.CommandContext(ctx.Context, executable, args...),
49 func (c *Cmd) prepare() {
60 func (c *Cmd) Start() error {
62 return c.Cmd.Start(
    [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 133 IN UINTN Cmd,
159 Status = MmcHost->SendCommand (MmcHost, Cmd, CmdArg);
161 DEBUG ((EFI_D_ERROR, "%a(MMC_CMD%d): Error %r\n", __func__, Cmd, Status));
233 UINTN Cmd;
311 Cmd = MMC_CMD17;
314 Cmd = MMC_CMD18;
319 Cmd = MMC_CMD24;
322 Cmd = MMC_CMD25;
330 Status = MmcTransferBlock (This, Cmd, Transfer, MediaId, Lba, ConsumeSize, Buffer);
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Include/Protocol/
IpmiInterfaceProtocol.h 30 UINT8 Cmd;
  /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 112 UINT32 Cmd;
143 Cmd = (MMC_GET_INDX (MmcCmd) & INDX_MASK) | MCI_CPSM_ENABLE;
145 Cmd |= MCI_CPSM_WAIT_RESPONSE;
149 Cmd |= MCI_CPSM_LONG_RESPONSE;
159 MmioWrite32 (MCI_COMMAND_REG, Cmd);
161 DoneMask = (Cmd & MCI_CPSM_WAIT_RESPONSE)
173 DEBUG ((EFI_D_ERROR, "MciSendCommand(CmdIndex:%d) Start bit Error! Response:0x%X Status:0x%x\n", (Cmd & 0x3F), MmioRead32 (MCI_RESPONSE0_REG), Status));
176 //DEBUG ((EFI_D_ERROR, "MciSendCommand(CmdIndex:%d) TIMEOUT! Response:0x%X Status:0x%x\n", (Cmd & 0x3F), MmioRead32 (MCI_RESPONSE0_REG), Status));
  /external/python/cpython2/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...]
  /external/python/cpython3/Lib/
cmd.py 47 __all__ = ["Cmd"]
49 PROMPT = '(Cmd) '
52 class Cmd:
58 A Cmd instance or subclass instance is a line-oriented interpreter
59 framework. There is no good reason to instantiate Cmd itself; rather,
61 in order to inherit Cmd's methods and encapsulate action methods.
189 cmd, arg = line[:i], line[i:].strip()
190 return cmd, arg, line
202 cmd, arg, line = self.parseline(line)
205 if cmd is None
    [all...]
  /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 48 // Cmd represents an external command being prepared or run.
50 // A Cmd cannot be reused after calling its Run, Output or CombinedOutput
52 type Cmd struct {
138 // Command returns the Cmd struct to execute the named program with
147 // The returned Cmd's Args field is constructed from the command name
151 func Command(name string, arg ...string) *Cmd {
152 cmd := &Cmd{
158 cmd.lookPathErr = err
160 cmd.Path = l
    [all...]
  /prebuilts/go/linux-x86/src/os/exec/
exec.go 48 // Cmd represents an external command being prepared or run.
50 // A Cmd cannot be reused after calling its Run, Output or CombinedOutput
52 type Cmd struct {
138 // Command returns the Cmd struct to execute the named program with
147 // The returned Cmd's Args field is constructed from the command name
151 func Command(name string, arg ...string) *Cmd {
152 cmd := &Cmd{
158 cmd.lookPathErr = err
160 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 314 UINT32 Cmd = 0;
319 Cmd = BIT_CMD_SEND_INIT;
322 Cmd = BIT_CMD_RESPONSE_EXPECT;
325 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_LONG_RESPONSE |
329 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
334 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC;
336 Cmd = 0;
339 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
344 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
348 Cmd = BIT_CMD_RESPONSE_EXPECT | BIT_CMD_CHECK_RESPONSE_CRC |
    [all...]

Completed in 412 milliseconds

1 2