HomeSort by relevance Sort by last modified time
    Searched refs:Command (Results 751 - 775 of 994) sorted by null

<<31323334353637383940

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/SmmS3SaveState/
SmmS3SaveState.c 265 EFI_SMBUS_DEVICE_COMMAND Command;
273 Command = VA_ARG (Marker, EFI_SMBUS_DEVICE_COMMAND);
276 SmBusAddress = SMBUS_LIB_ADDRESS (SlaveAddress.SmbusDeviceAddress,Command,0,PecCheck);
  /device/linaro/bootloader/edk2/OptionRomPkg/UndiRuntimeDxe/
Init.c 383 NewCommand = (UINT16) (CfgHdr->Command | PCI_COMMAND_MASTER | PCI_COMMAND_IO);
384 if (CfgHdr->Command != NewCommand) {
392 CfgHdr->Command = NewCommand;
  /external/clang/lib/Tooling/
Tooling.cpp 66 // We expect to get back exactly one Command job, if we didn't something
69 if (Jobs.size() != 1 || !isa<clang::driver::Command>(*Jobs.begin())) {
79 const clang::driver::Command &Cmd =
80 cast<clang::driver::Command>(*Jobs.begin());
398 llvm::errs() << "Skipping " << File << ". Compile command not found.\n";
  /external/deqp/scripts/khr_util/
registry.py 73 class Command(Located):
188 self.commands = CommandIndex(eRegistry.findall('commands/command'))
258 for commandName in eComponent.xpath('command/@name'):
329 info('Add command %s', commandName)
333 Command, eCmd,
364 createMissing=Command, kind="command")
370 for command in commands:
371 alias = command.alias
376 command.alias = Non
    [all...]
  /external/llvm/tools/llvm-cov/
CodeCoverage.cpp 10 // The 'CodeCoverageTool' class implements a command line tool to analyze and
42 enum Command {
43 /// \brief The show command.
45 /// \brief The report command.
83 int run(Command Cmd, int argc, const char **argv);
292 int CodeCoverageTool::run(Command Cmd, int argc, const char **argv) {
  /external/python/cpython2/Lib/
uuid.py 296 def _popen(command, args):
301 executable = os.path.join(dir, command)
314 def _find_mac(command, args, hw_identifiers, get_index):
316 pipe = _popen(command, args)
430 ncb.Command = netbios.NCBENUM
438 ncb.Command = netbios.NCBRESET
443 ncb.Command = netbios.NCBASTAT
  /external/python/cpython3/Lib/
uuid.py 343 def _popen(command, *args):
345 executable = shutil.which(command)
348 executable = shutil.which(command, path=path)
380 def _find_mac(command, args, hw_identifiers, get_index):
383 proc = _popen(command, *args.split())
521 ncb.Command = netbios.NCBENUM
529 ncb.Command = netbios.NCBRESET
534 ncb.Command = netbios.NCBASTAT
  /external/syzkaller/pkg/email/
parser_test.go 171 // This is unfortunate case when a command is split by email client
298 Command: "fix:",
342 Command: "invalid",
356 #syz command`,
365 #syz command`,
367 Command: "command",
416 Command: "",
526 Command: "test",
574 Command: "dup:"
    [all...]
  /frameworks/av/services/audioflinger/
FastMixer.cpp 130 bool FastMixer::isSubClassCommand(FastThreadState::Command command)
132 switch ((FastMixerState::Command) command) {
367 const FastMixerState::Command command = mCommand; local
370 if ((command & FastMixerState::MIX) && (mMixer != NULL) && mIsWarm) {
461 if ((command & FastMixerState::WRITE) && (mOutputSink != NULL) && (mMixerBuffer != NULL)) {
  /external/boringssl/src/util/
run_android_tests.go 55 cmd := exec.Command(*adbPath, args...)
76 cmd := exec.Command(*adbPath, args...)
111 cmd := exec.Command("go", args...)
  /external/libchrome/soong/
bindings_generator.go 28 Command: `${mojomBindingsGenerator}
42 Command: `${mojomBindingsGenerator}
60 Command: "${mergeZips} ${out} ${in}",
  /external/syzkaller/vm/odroid/
odroid.go 126 func (inst *instance) ssh(command string) ([]byte, error) {
128 Logf(0, "executing ssh %+v", command)
136 args := append(vmimpl.SSHArgs(inst.debug, inst.sshkey, 22), "root@"+inst.cfg.Slave_Addr, command)
138 Logf(0, "running command: ssh %#v", args)
140 cmd := osutil.Command("ssh", args...)
286 cmd := osutil.Command("scp", args...)
288 Logf(0, "running command: scp %#v", args)
311 func (inst *instance) Run(timeout time.Duration, stop <-chan bool, command string) (
325 "root@"+inst.cfg.Slave_Addr, "cd /data; "+command)
327 Logf(0, "running command: ssh %#v", args
    [all...]
  /build/blueprint/gotestrunner/
gotestrunner.go 63 cmd := exec.Command(test, flag.Args()[1:]...)
  /build/soong/bpf/
bpf.go 40 Command: "$ccCmd --target=bpf -c $cFlags -MD -MF ${out}.d -o $out $in",
  /build/soong/java/
jacoco.go 32 Command: `rm -rf $tmpDir && mkdir -p $tmpDir && ` +
49 // Instruments a jar using the Jacoco command line interface. Uses stripSpec to extract a subset
  /build/soong/ui/build/
exec.go 35 func Command(ctx Context, config Config, name string, executable string, args ...string) *Cmd {
126 // RunAndPrintOrFatal will run the command, then after finishing
test_build.go 58 cmd := Command(ctx, config, "ninja", executable, args...)
  /device/google/cuttlefish_common/host/commands/launch/
main.cc 173 // A dummy command, so logs are desciptive
174 cvd::Command("boot_events_listener"),
188 cvd::Command(config.e2e_test_binary()),
360 for (auto& command : config_commands) {
361 std::cout << " " << command << std::endl;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
bdist_rpm.py 1 """distutils.command.bdist_rpm
3 Implements the Distutils 'bdist_rpm' command (create RPM source and binary
12 from distutils.core import Command
19 class bdist_rpm (Command):
51 # supply it on the command line.
423 # XXX yuck! this filename is available from the "sdist" command,
build_py.py 1 """distutils.command.build_py
3 Implements the Distutils 'build_py' command."""
11 from distutils.core import Command
16 class build_py(Command):
385 # method of the "install_lib" command, except for the determination
sdist.py 1 """distutils.command.sdist
3 Implements the Distutils 'sdist' command (create a source distribution)."""
13 from distutils.core import Command
24 the "--help-formats" command-line option).
36 class sdist(Command):
41 """Callable used for the check sub-command.
172 warn("distutils.command.sdist.check_metadata is deprecated, \
173 use the check command instead", PendingDeprecationWarning)
461 """Return the list of archive files created when the command
462 was run, or None if the command hasn't run yet.
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_dist.py 12 from distutils.cmd import Command
17 class test_dist(Command):
18 """Sample distutils extension command."""
86 self.assertEqual(d.get_command_packages(), ["distutils.command"])
90 sys.argv.extend(["--command-packages",
96 # let's actually try to load our test command:
98 ["distutils.command", "foo.bar", "distutils.tests"])
115 ["distutils.command", "foo.bar", "splat"])
117 # ensure command line overrides config:
118 sys.argv[1:] = ["--command-packages", "spork", "build"]
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/IndustryStandard/
pci22.h 27 // Command
35 UINT16 Command;
449 UINT32 Command;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
pci22.h 34 // Command
42 UINT16 Command;
464 UINT32 Command;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Pci/IdeBusDxe/
Ata.c 2 This file contains all helper functions on the ATA command
41 @note This function must be called after DEVICE_IDENTITY command has been
256 Sends out an ATA Identify Command to the specified device.
259 identification. It sends out the ATA Identify Command to the
260 specified device. Only ATA device responses to this command. If
261 the command succeeds, it returns the Identify data structure which
270 @retval EFI_DEVICE_ERROR ATA Identify Device Command failed or device is not ATA device.
287 // the ATA Identify command
295 // use ATA PIO Data In protocol to send ATA Identify command
315 // If ATA Identify command succeeds, then according to the received
    [all...]

Completed in 4853 milliseconds

<<31323334353637383940