HomeSort by relevance Sort by last modified time
    Searched refs:Cmd (Results 76 - 100 of 144) sorted by null

1 2 34 5 6

  /external/syzkaller/vm/vmimpl/
console.go 89 cmd := osutil.Command(bin, args...)
90 cmd.Stdout = wpipe
91 cmd.Stderr = wpipe
92 if err := cmd.Start(); err != nil {
99 cmd: cmd,
113 cmd *exec.Cmd
126 cmd := t.cmd
    [all...]
vmimpl.go 40 // Run runs cmd inside of the VM (think of ssh cmd).
41 // outc receives combined cmd and kernel console output.
108 func Multiplex(cmd *exec.Cmd, merger *OutputMerger, console io.Closer, timeout time.Duration,
129 cmd.Process.Kill()
132 if cmdErr := cmd.Wait(); cmdErr == nil {
140 cmd.Process.Kill()
143 cmd.Wait()
  /device/linaro/bootloader/edk2/ShellPkg/Include/Protocol/
EfiShellEnvironment2.h 183 @param[in] Cmd The command name.
195 IN CHAR16 *Cmd,
    [all...]
  /external/clang/include/clang/Driver/
Driver.h 223 void setUpResponseFiles(Compilation &C, Command &Cmd);
  /external/llvm/test/MC/MachO/ARM/
darwin-ARM-reloc.s 155 @ CHECK: Cmd: LC_SEGMENT
darwin-Thumb-reloc.s 117 @ CHECK: Cmd: LC_SEGMENT
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/MachO/ARM/
darwin-ARM-reloc.s 155 @ CHECK: Cmd: LC_SEGMENT
darwin-Thumb-reloc.s 117 @ CHECK: Cmd: LC_SEGMENT
  /external/syzkaller/pkg/osutil/
osutil.go 24 cmd := Command(bin, args...)
25 cmd.Dir = dir
26 return Run(timeout, cmd)
29 // Run runs cmd with the specified timeout.
31 func Run(timeout time.Duration, cmd *exec.Cmd) ([]byte, error) {
33 if cmd.Stdout == nil {
34 cmd.Stdout = output
36 if cmd.Stderr == nil {
37 cmd.Stderr = outpu
    [all...]
  /build/soong/genrule/
genrule.go 64 // The command to run on one or more input files. Cmd supports substitution of a few variables
78 // Use "$(in)" directly in Cmd to ensure that all inputs used are declared.
79 Cmd *string
131 cmd string
234 // "cmd: unknown location label ..." errors later. Add a dummy file to the local label. The
267 // "cmd: label ":..." has no files" errors later. Add a dummy file to the local label. The
278 task := g.taskGenerator(ctx, String(g.properties.Cmd), srcFiles)
286 rawCommand, err := android.Expand(task.cmd, func(name string) (string, error) {
290 ctx.PropertyErrorf("cmd", fmt, args...)
350 ctx.PropertyErrorf("cmd", "%s", err.Error()
    [all...]
  /external/autotest/client/cros/nfc/
console.py 7 import cmd
440 class NfcConsole(cmd.Cmd):
446 cmd.Cmd.__init__(self)
  /external/clang/utils/analyzer/
SATestBuild.py 162 BuildScript = "run_static_analyzer.cmd"
339 Cmd = "xcrun --sdk " + SDKName + " --show-sdk-path"
340 return check_output(Cmd, shell=True).rstrip()
  /external/syzkaller/pkg/symbolizer/
symbolizer.go 32 cmd *exec.Cmd
59 sub.cmd.Process.Kill()
60 sub.cmd.Wait()
68 cmd := osutil.Command("addr2line", "-afi", "-e", bin)
69 stdin, err := cmd.StdinPipe()
73 stdout, err := cmd.StdoutPipe()
78 if err := cmd.Start(); err != nil {
84 cmd: cmd,
    [all...]
  /external/v8/tools/vim/
ninja-build.vim 5 " Adds a "Compile this file" function, using ninja. On Mac, binds Cmd-k to
  /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...]
pdb.py 9 import cmd
59 class Pdb(bdb.Bdb, cmd.Cmd):
63 cmd.Cmd.__init__(self, completekey, stdin, stdout)
99 # must be disp. after execing the cmd list
101 # must be disp. after execing the cmd list
279 return cmd.Cmd.onecmd(self, line)
285 cmd, arg, line = self.parseline(line)
    [all...]
  /external/python/cpython2/Lib/
pdb.py 9 import cmd
59 class Pdb(bdb.Bdb, cmd.Cmd):
63 cmd.Cmd.__init__(self, completekey, stdin, stdout)
99 # must be disp. after execing the cmd list
101 # must be disp. after execing the cmd list
279 return cmd.Cmd.onecmd(self, line)
285 cmd, arg, line = self.parseline(line
    [all...]
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/syzkaller/vm/gvisor/
gvisor.go 47 cmd *exec.Cmd
130 cmd := inst.runscCmd("run", "-bundle", bundleDir, inst.name)
131 cmd.Stdout = wpipe
132 cmd.Stderr = wpipe
133 if err := cmd.Start(); err != nil {
138 inst.cmd = cmd
187 func (inst *instance) runscCmd(add ...string) *exec.Cmd {
197 cmd := osutil.Command(inst.image, args...
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
CodeCoverage.cpp 64 int run(Command Cmd, int argc, const char **argv);
543 int CodeCoverageTool::run(Command Cmd, int argc, const char **argv) {
782 switch (Cmd) {
    [all...]
  /external/python/cpython3/Lib/
pdb.py 73 import cmd
136 class Pdb(bdb.Bdb, cmd.Cmd):
143 cmd.Cmd.__init__(self, completekey, stdin, stdout)
180 # must be disp. after execing the cmd list
182 # must be disp. after execing the cmd list
418 return cmd.Cmd.onecmd(self, line)
424 cmd, arg, line = self.parseline(line
    [all...]
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...]
  /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...]
  /external/perfetto/src/traced/probes/ftrace/
ftrace_controller.cc 285 if (thread_sync_.cmd != FtraceThreadSync::kRun)
303 thread_sync_.cmd = FtraceThreadSync::kRun;
372 if (thread_sync_.cmd == FtraceThreadSync::kFlush)
443 FtraceThreadSync::Cmd cmd,
451 if (thread_sync_.cmd == FtraceThreadSync::kQuit &&
452 cmd != FtraceThreadSync::kQuit) {
457 thread_sync_.cmd = cmd;
  /external/python/apitools/samples/dns_sample/dns_v1/
dns_v1.py 132 class PyShell(appcommands.Cmd):

Completed in 948 milliseconds

1 2 34 5 6