/external/v8/tools/release/ |
test_scripts.py | 235 def Cmd(*args, **kwargs): 388 def Command(self, cmd, args="", prefix="", pipe=True, cwd=None): 389 print "%s %s" % (cmd, args) 391 return self._mock.Call("command", cmd + " " + args, cwd=cwd) 435 self.Expect([Cmd("git --version", "git version 1.2.3"), 436 Cmd("git dummy", "")]) 442 Cmd("git status -s -uno", ""), 443 Cmd("git checkout -f origin/master", ""), 444 Cmd("git fetch", ""), 445 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 | 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...] |
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...] |
/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 AsciiStrnCpyS (&mCmdHistory[mCmdHistoryStart][0], MAX_CMD_LINE, 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...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
GenFdsGlobalVariable.py | 367 Cmd = ["GenSec"]
369 Cmd += ["-s", Type]
371 Cmd += ["-c", CompressionType]
373 Cmd += ["-g", Guid]
375 Cmd += ["-l", GuidHdrLen]
379 Cmd += ["-r", Attr]
383 Cmd += ["--sectionalign", SecAlign]
387 #Cmd += ["-n", '"' + Ui + '"']
396 Cmd += ["-n", Ver]
398 Cmd += ["-j", BuildNumber] [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Drivers/Spi/Devices/ |
MvSpiFlash.c | 44 IN OUT UINT8 *Cmd
48 Cmd[1] = Address >> 24;
49 Cmd[2] = Address >> 16;
50 Cmd[3] = Address >> 8;
51 Cmd[4] = Address;
53 Cmd[1] = Address >> 16;
54 Cmd[2] = Address >> 8;
55 Cmd[3] = Address;
63 IN UINT8 *Cmd,
72 Status = SpiMasterProtocol->ReadWrite (SpiMasterProtocol, Slave, Cmd,
[all...] |
/external/perfetto/src/traced/probes/ftrace/ |
ftrace_thread_sync.h | 58 // |cmd| and |cmd_id| are written only by FtraceController. On each cycle, 62 enum Cmd { kRun = 0, kFlush, kQuit }; 63 Cmd cmd = kRun; member in struct:perfetto::FtraceThreadSync
|
/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...] |
/external/syzkaller/pkg/osutil/ |
osutil_appengine.go | 12 func Sandbox(cmd *exec.Cmd, user, net bool) error { 20 func setPdeathsig(cmd *exec.Cmd) {
|
osutil_akaros.go | 23 func Sandbox(cmd *exec.Cmd, user, net bool) error { 31 func setPdeathsig(cmd *exec.Cmd) {
|
osutil_bsd.go | 20 func Sandbox(cmd *exec.Cmd, user, net bool) error { 28 func setPdeathsig(cmd *exec.Cmd) {
|
osutil_darwin.go | 20 func Sandbox(cmd *exec.Cmd, user, net bool) error { 28 func setPdeathsig(cmd *exec.Cmd) {
|
osutil_fuchsia.go | 37 func Sandbox(cmd *exec.Cmd, user, net bool) error { 45 func setPdeathsig(cmd *exec.Cmd) {
|
osutil_windows.go | 37 func Sandbox(cmd *exec.Cmd, user, net bool) error { 45 func setPdeathsig(cmd *exec.Cmd) {
|
/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...] |
/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/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);
|
/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...] |
/device/linaro/bootloader/OpenPlatformPkg/Drivers/SdMmc/DwMmcHcDxe/ |
DwMmcHci.c | 558 UINT32 Cmd;
561 Cmd = BIT_CMD_WAIT_PRVDATA_COMPLETE | BIT_CMD_UPDATE_CLOCK_ONLY |
563 Status = DwMmcHcRwMmio (PciIo, Slot, DW_MMC_CMD, FALSE, sizeof (Cmd), &Cmd);
568 Status = DwMmcHcRwMmio (PciIo, Slot, DW_MMC_CMD, TRUE, sizeof (Cmd), &Cmd);
572 if (!(Cmd & CMD_START_BIT)) {
[all...] |