/external/clang/tools/scan-build/bin/ |
scan-build | 254 my $Cmd = $$Args[0]; 256 if ($Cmd =~ /configure/ || $Cmd =~ /autogen/) { 1051 my $Cmd = $Args->[0]; 1056 if ($Cmd =~ /\bxcodebuild$/) { 1063 if ($Cmd =~ /(.*\/?gcc[^\/]*$)/ or 1064 $Cmd =~ /(.*\/?cc[^\/]*$)/ or 1065 $Cmd =~ /(.*\/?llvm-gcc[^\/]*$)/ or 1066 $Cmd =~ /(.*\/?clang$)/ or 1067 $Cmd =~ /(.*\/?ccc-analyzer[^\/]*$)/) [all...] |
/external/llvm/lib/Object/ |
MachOObjectFile.cpp | 55 T Cmd; 56 memcpy(&Cmd, P, sizeof(T)); 58 MachO::swapStruct(Cmd); 59 return Cmd; 68 T Cmd; 69 memcpy(&Cmd, P, sizeof(T)); 71 MachO::swapStruct(Cmd); 72 return Cmd; 306 Load.C.cmd != MachO::LC_THREAD || Load.C.cmdsize % 4) { 320 if (Load.C.cmd == MachO::LC_SYMTAB) [all...] |
/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/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_cmd.py | 3 Test script for the 'cmd' module
8 import cmd
15 class samplecmdclass(cmd.Cmd):
177 class simplecmd(cmd.Cmd):
188 cmd = self.simplecmd(stdin=input, stdout=output)
189 cmd.use_rawinput = False
190 cmd.cmdloop()
192 ("(Cmd) test\n" [all...] |
/device/linaro/bootloader/edk2/StdLib/LibC/Uefi/Devices/Utility/ |
DevGenisis.c | 35 int EFIAPI fnullop_fcntl (struct __filedes *filp, UINT32 Cmd, void *p3, void *p4)
52 int EFIAPI fbadop_ioctl (struct __filedes *filp, ULONGN Cmd, va_list argp)
|
/build/soong/ui/build/ |
sandbox_darwin.go | 40 func (c *Cmd) sandboxSupported() bool { 50 func (c *Cmd) wrapSandbox() {
|
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Include/Protocol/ |
IpmiInterfaceProtocol.h | 30 UINT8 Cmd;
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/Marvell/Include/Protocol/ |
Spi.h | 76 IN UINT8 *Cmd,
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbMassStorageDxe/ |
UsbMassBot.h | 119 @param Cmd The high level command
135 IN VOID *Cmd,
|
UsbMassCbi.h | 80 @param Cmd The command to transfer to device
96 IN VOID *Cmd,
|
UsbMassCbi.c | 165 @param Cmd The high level command to transfer to device
176 IN UINT8 *Cmd,
189 // Cmd" (ADSC) class specific request to send commands.
212 Cmd,
419 @param Cmd The command to transfer to device
435 IN VOID *Cmd,
457 Status = UsbCbiSendCommand (UsbCbi, Cmd, CmdLen, Timeout);
490 // as a bad result type doesn't mean a cmd failure
492 if (Result.Type != 0 && *(UINT8*)Cmd != 0x03) {
|
UsbMassBot.c | 141 @param Cmd The command to transfer to device
155 IN UINT8 *Cmd,
181 CopyMem (Cbw.CmdBlock, Cmd, CmdLen);
385 @param Cmd The high level command
401 IN VOID *Cmd,
423 Status = UsbBotSendCommand (UsbBot, Cmd, CmdLen, DataDir, DataLen, Lun);
|
/device/linaro/bootloader/edk2/StdLib/Include/sys/ |
EfiSysCall.h | 264 @param[in] Cmd Command to execute.
265 @param[in] ... Additional arguments, as needed by Cmd.
268 returned is positive and depends upon Cmd as follows:
275 int fcntl (int Fd, int Cmd, ...);
|
/device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/ |
kfile.h | 116 int (EFIAPI *fo_fcntl) (struct __filedes *filp, UINT32 Cmd, void *p3, void *p4);
122 int (EFIAPI *fo_ioctl) (struct __filedes *filp, ULONGN Cmd, va_list argp);
172 int EFIAPI fnullop_fcntl (struct __filedes *filp, UINT32 Cmd, void *p3, void *p4);
177 int EFIAPI fbadop_ioctl (struct __filedes *filp, ULONGN Cmd, va_list argp);
|
/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));
|
/device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/NorFlashDxe/ |
NorFlashDxe.h | 51 #define CREATE_DUAL_CMD(Cmd) ( ( Cmd << 16) | ( Cmd & LOW_16_BITS) )
52 #define SEND_NOR_COMMAND(BaseAddr,Offset,Cmd) MmioWrite32 (CREATE_NOR_ADDRESS(BaseAddr,Offset), CREATE_DUAL_CMD(Cmd))
|
/external/clang/tools/scan-build/libexec/ |
ccc-analyzer | 201 my $cmd = shift @items; 202 die "cannot find 'clang' in 'clang' command\n" if (!($cmd =~ /clang/)); 211 my $Cmd; 217 $Cmd = 'cp'; 225 $Cmd = $Clang; 265 push @PrintArgs,"'$Cmd'"; 286 my $OutputStream = silent_system($HtmlDir, $Cmd, @CmdArgs); 296 if ($Result & 127 and $Cmd eq $Clang and defined $HtmlDir) {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
Vtf.py | 50 Cmd = (
56 GenFdsGlobalVariable.CallExternalTool(Cmd, "GenFv -Vtf Failed!")
|
/external/autotest/client/cros/cellular/pseudomodem/ |
client.py | 7 import cmd 16 class PseudoModemClient(cmd.Cmd): 22 cmd.Cmd.__init__(self)
|
/external/python/cpython2/Lib/test/ |
test_cmd.py | 2 Test script for the 'cmd' module 7 import cmd 14 class samplecmdclass(cmd.Cmd): 176 class simplecmd(cmd.Cmd): 195 cmd = self.simplecmd(stdin=input, stdout=output) 196 cmd.use_rawinput = False 197 cmd.cmdloop() 199 ("(Cmd) test\n [all...] |
/external/python/cpython3/Lib/test/ |
test_cmd.py | 2 Test script for the 'cmd' module 7 import cmd 13 class samplecmdclass(cmd.Cmd): 173 class simplecmd(cmd.Cmd): 192 cmd = self.simplecmd(stdin=input, stdout=output) 193 cmd.use_rawinput = False 194 cmd.cmdloop() 196 ("(Cmd) test\n [all...] |
/external/perfetto/src/traced/probes/ftrace/ |
ftrace_controller.h | 112 void IssueThreadSyncCmd(FtraceThreadSync::Cmd,
|
/external/syzkaller/pkg/osutil/ |
osutil_linux.go | 36 func Sandbox(cmd *exec.Cmd, user, net bool) error { 37 if cmd.SysProcAttr == nil { 38 cmd.SysProcAttr = new(syscall.SysProcAttr) 41 cmd.SysProcAttr.Cloneflags = syscall.CLONE_NEWNET | syscall.CLONE_NEWIPC | 50 cmd.SysProcAttr.Credential = &syscall.Credential{ 111 func setPdeathsig(cmd *exec.Cmd) { 112 if cmd.SysProcAttr == nil { 113 cmd.SysProcAttr = new(syscall.SysProcAttr [all...] |
/external/clang/lib/Tooling/ |
CompilationDatabase.cpp | 252 for (const auto &Cmd : Jobs) { 255 if (Cmd.getSource().getKind() == driver::Action::AssembleJobClass) 256 CompileAnalyzer.run(&Cmd.getSource());
|
/external/boringssl/src/util/ |
all_tests.go | 100 func valgrindOf(dbAttach bool, path string, args ...string) *exec.Cmd { 111 func callgrindOf(path string, args ...string) *exec.Cmd { 119 func gdbOf(path string, args ...string) *exec.Cmd { 127 func sdeOf(cpu, path string, args ...string) *exec.Cmd { 158 var cmd *exec.Cmd 160 cmd = valgrindOf(false, prog, args...) 162 cmd = callgrindOf(prog, args...) 164 cmd = gdbOf(prog, args...) 166 cmd = sdeOf(test.cpu, prog, args... [all...] |