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

1 2 3 4 5 6 7 8 910

  /external/v8/tools/release/
test_scripts.py 269 def Cmd(*args, **kwargs):
422 def Command(self, cmd, args="", prefix="", pipe=True, cwd=None):
423 print "%s %s" % (cmd, args)
425 return self._mock.Call("command", cmd + " " + args, cwd=cwd)
469 self.Expect([Cmd("git --version", "git version 1.2.3"),
470 Cmd("git dummy", "")])
476 Cmd("git status -s -uno", ""),
477 Cmd("git checkout -f origin/master", ""),
478 Cmd("git fetch", ""),
479 Cmd("git branch", " branch1\n* %s" % TEST_CONFIG["BRANCHNAME"])
    [all...]
  /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...]
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...]
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...]
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...]
  /system/core/logd/
CommandListener.h 50 class name##Cmd : public LogCommand { \
54 explicit name##Cmd(LogBuffer* buf); \
55 virtual ~name##Cmd() { \
70 class name##Cmd : public LogCommand { \
72 name##Cmd(); \
73 virtual ~name##Cmd() { \
81 class name##Cmd : public LogCommand { \
85 name##Cmd(); \
86 explicit name##Cmd(CommandListener* parent); \
87 virtual ~name##Cmd() { \
    [all...]
  /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...]
  /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...]
sandbox_linux.go 27 func (c *Cmd) sandboxSupported() bool {
31 func (c *Cmd) wrapSandbox() {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
GenFdsGlobalVariable.py 368 Cmd = ["GenSec"]
370 Cmd += ["-s", Type]
372 Cmd += ["-c", CompressionType]
374 Cmd += ["-g", Guid]
376 Cmd += ["-l", GuidHdrLen]
380 Cmd += ["-r", Attr]
384 Cmd += ["--sectionalign", SecAlign]
388 #Cmd += ["-n", '"' + Ui + '"']
397 Cmd += ["-n", Ver]
399 Cmd += ["-j", BuildNumber]
    [all...]
  /external/clang/tools/libclang/
CXCompilationDatabase.cpp 43 AllocatedCXCompileCommands(std::vector<CompileCommand> Cmd)
44 : CCmd(std::move(Cmd)) {}
110 CompileCommand *cmd = static_cast<CompileCommand *>(CCmd);
111 return cxstring::createRef(cmd->Directory.c_str());
120 CompileCommand *cmd = static_cast<CompileCommand *>(CCmd);
121 return cxstring::createRef(cmd->Filename.c_str());
139 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd);
141 if (Arg >= Cmd->CommandLine.size())
144 return cxstring::createRef(Cmd->CommandLine[Arg].c_str());
162 CompileCommand *Cmd = static_cast<CompileCommand *>(CCmd)
    [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...]
  /prebuilts/go/darwin-x86/src/net/
interface_bsd_test.go 25 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
29 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
42 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
46 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
50 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
interface_linux_test.go 19 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
23 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
27 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
31 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
44 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
48 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
52 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
56 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
  /prebuilts/go/linux-x86/src/net/
interface_bsd_test.go 25 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
29 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
42 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
46 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
50 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
interface_linux_test.go 19 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
23 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
27 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
31 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
44 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
48 ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
52 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
56 ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
  /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();
  /cts/hostsidetests/security/src/android/cts/security/
ProcessMustUseSeccompTest.java 51 * Get the PID of process "Name" using "Cmd". If prefix == True only do
56 private String getPidFromCmd(String Name, String Cmd, boolean prefix) throws DeviceNotAvailableException {
59 mDevice.executeShellCommand(Cmd, Out);
102 private void assertSeccompFilter(String Name, String Cmd, boolean prefix)
104 String Pid = getPidFromCmd(Name, Cmd, prefix);
  /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...]
  /external/abi-compliance-checker/modules/Internals/
RegTests.pm     [all...]
  /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);
  /hardware/intel/img/psb_video/src/mrst/
psb_deblock.c 442 uint32_t Value, Cmd;
444 Cmd = 0;
448 REGIO_WRITE_FIELD(Cmd, MSVDX_CMDS, SLICE_PARAMS, DISABLE_DEBLOCK_FILTER_IDC, Value);
451 REGIO_WRITE_FIELD(Cmd, MSVDX_CMDS, SLICE_PARAMS, SLICE_ALPHA_CO_OFFSET_DIV2, Value);
454 REGIO_WRITE_FIELD(Cmd, MSVDX_CMDS, SLICE_PARAMS, SLICE_BETA_OFFSET_DIV2, Value);
457 REGIO_WRITE_FIELD(Cmd, MSVDX_CMDS, SLICE_PARAMS, SLICE_FIELD_TYPE, Value);
460 REGIO_WRITE_FIELD(Cmd, MSVDX_CMDS, SLICE_PARAMS, SLICE_CODE_TYPE, Value);
462 return Cmd;
557 uint32_t Cmd, item_loc;
576 Cmd = 0
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTPFXParser.cpp 557 CPVRTHash Cmd(m_psContext->ppszEffectFile[nLine]);
558 if(Cmd == ParserCommands[eCmds_Header])
579 else if(Cmd == ParserCommands[eCmds_Texture])
593 else if(Cmd == ParserCommands[eCmds_Target])
607 else if(Cmd == ParserCommands[eCmds_Textures])
628 else if(Cmd == ParserCommands[eCmds_VertexShader])
645 else if(Cmd == ParserCommands[eCmds_FragmentShader])
662 else if(Cmd == ParserCommands[eCmds_Effect])
1171 CPVRTHash Cmd(str);
1172 if(Cmd == HeaderCommands[eCmds_Version]
    [all...]

Completed in 544 milliseconds

1 2 3 4 5 6 7 8 910