HomeSort by relevance Sort by last modified time
    Searched refs:STDOUT (Results 151 - 175 of 318) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/boringssl/src/crypto/sha/asm/
sha1-armv4-large.pl 81 open STDOUT,"| \"$^X\" $xlate $flavour $output";
83 open STDOUT,">$output";
701 close STDOUT; # enforce flush
sha256-armv4.pl 50 open STDOUT,"| \"$^X\" $xlate $flavour $output";
52 open STDOUT,">$output";
735 close STDOUT; # enforce flush
sha512-armv4.pl 63 open STDOUT,"| \"$^X\" $xlate $flavour $output";
65 open STDOUT,">$output";
666 close STDOUT; # enforce flush
  /external/mksh/src/
check.pl 31 # expected-stdout: !
121 # expected-stdout m What the test should generate on stdout;
123 # expected-stdout-pattern m A perl pattern which matches the
216 'expected-stdout', 'm',
217 'expected-stdout-pattern', 'm',
552 if (!open(STDOUT, "> $tempo")) {
556 binmode(STDOUT);
558 print STDOUT "$prog: couldn't open $tempe in child - $!\n";
634 $tmp = &check_output($test{'long-name'}, $tempo, 'stdout',
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
subprocess.py 34 stdin=None, stdout=None, stderr=None,
70 stdin, stdout and stderr specify the executed programs' standard
76 parent. Additionally, stderr can be STDOUT, which indicates that the
78 file handle as for stdout.
95 If universal_newlines is true, the file objects stdout and stderr are
101 default). Also, the newlines attribute of the file objects stdout,
179 Interact with process: Send data to stdin. Read data from stdout
185 communicate() returns a tuple (stdout, stderr).
196 stdout
197 If the stdout argument is PIPE, this attribute is a file objec
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
subprocess.py 34 stdin=None, stdout=None, stderr=None,
70 stdin, stdout and stderr specify the executed programs' standard
76 parent. Additionally, stderr can be STDOUT, which indicates that the
78 file handle as for stdout.
95 If universal_newlines is true, the file objects stdout and stderr are
101 default). Also, the newlines attribute of the file objects stdout,
179 Interact with process: Send data to stdin. Read data from stdout
185 communicate() returns a tuple (stdout, stderr).
196 stdout
197 If the stdout argument is PIPE, this attribute is a file objec
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py 34 stdin=None, stdout=None, stderr=None,
70 stdin, stdout and stderr specify the executed programs' standard
76 parent. Additionally, stderr can be STDOUT, which indicates that the
78 file handle as for stdout.
95 If universal_newlines is true, the file objects stdout and stderr are
101 default). Also, the newlines attribute of the file objects stdout,
179 Interact with process: Send data to stdin. Read data from stdout
185 communicate() returns a tuple (stdout, stderr).
196 stdout
197 If the stdout argument is PIPE, this attribute is a file objec
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py 34 stdin=None, stdout=None, stderr=None,
70 stdin, stdout and stderr specify the executed programs' standard
76 parent. Additionally, stderr can be STDOUT, which indicates that the
78 file handle as for stdout.
95 If universal_newlines is true, the file objects stdout and stderr are
101 default). Also, the newlines attribute of the file objects stdout,
179 Interact with process: Send data to stdin. Read data from stdout
185 communicate() returns a tuple (stdout, stderr).
196 stdout
197 If the stdout argument is PIPE, this attribute is a file objec
    [all...]
  /development/python-packages/adb/
device.py 41 def __init__(self, cmd, stdout, stderr, exit_code):
45 self.stdout = stdout
52 subprocess.check_call([adb_path, 'start-server'], stdout=devnull,
117 subprocess.check_call([adb_path, 'start-server'], stdout=devnull,
292 self.adb_cmd + cmd, stderr=subprocess.STDOUT)
301 A (stdout, stderr) tuple. Stderr may be combined into stdout
307 exit_code, stdout, stderr = self.shell_nocheck(cmd)
309 raise ShellError(cmd, stdout, stderr, exit_code
    [all...]
  /external/autotest/site_utils/chromeos_proxy/
swarming_bots.py 211 cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
  /external/autotest/site_utils/deployment/
install.py 86 Report output goes both to stdout, and to a given report
89 @param report_log Write the message here and to stdout.
93 sys.stdout.write(message)
112 stdout=subprocess.PIPE)
113 omaha_status = json.load(sp.stdout)
241 # put stuff onto stdout with 'print' statements. Most notably,
244 # inherited from our parent, so redirect stdout and stderr here,
247 sys.stdout = open(log_name, 'w')
248 sys.stderr = sys.stdout
413 # Logging configuration reset sys.stdout to the log file
    [all...]
  /external/autotest/site_utils/
test_push.py 210 Also it will echo the run_suite output to stdout.
260 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
261 stderr=subprocess.STDOUT)
264 line = proc.stdout.readline()
  /external/chromium-trace/catapult/third_party/Paste/paste/debug/
doctest_webapp.py 37 stderr=subprocess.STDOUT,
38 stdout=subprocess.PIPE, env=_make_env())
39 data = proc.stdout.read()
125 stdout=subprocess.PIPE,
127 stdout, errors = proc.communicate()
128 stdout = StringIO(stdout)
129 headers = rfc822.Message(stdout)
130 content = stdout.read()
227 stdout=subprocess.PIPE
    [all...]
  /external/jsoncpp/devtools/
batchbuild.py 90 process = subprocess.Popen( cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, cwd=self.work_dir,
92 stdout, _ = process.communicate( )
95 log = ' '.join( cmd ) + '\n' + stdout + '\nExit code: %r\n' % process.returncode
106 def fix_eol( stdout ):
109 return re.sub( '\r*\n', os.linesep, stdout )
  /external/v8/build/android/pylib/utils/
emulator.py 443 stderr=subprocess.STDOUT)
  /external/vixl/tools/
test.py 259 sys.stdout.flush()
262 # Interleave `stderr` and `stdout`.
264 stdout=subprocess.PIPE,
265 stderr=subprocess.STDOUT,
269 # the process is running. Since the process can hang if the `stdout` pipe is
277 flags = fcntl.fcntl(p.stdout, fcntl.F_GETFL)
278 fcntl.fcntl(p.stdout, fcntl.F_SETFL, flags | os.O_NONBLOCK)
293 sys.stdout.flush()
298 line = os.read(p.stdout.fileno(), 1024)
  /system/extras/pagecache/
pagecache.py 195 A tuple containing the adb output (stdout & stderr) and the return code
203 adb_output = subprocess.check_output(adb_command, stderr=subprocess.STDOUT,
276 sys.stdout.write('Done.\n')
285 def read_and_parse_trace_data_live(stdout, stderr, pagecache_stats, app_name):
290 stdout_thread = FileReaderThread(stdout, stdout_queue,
346 stdout.close()
395 atrace = subprocess.Popen(trace_cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
401 read_and_parse_trace_data_live(atrace.stdout, atrace.stderr, pagecache_stats, options.app_name)
  /toolchain/binutils/binutils-2.25/etc/
texi2pod.pl 80 open(STDOUT, ">$out") or die "opening \"$out\": $!\n";
  /external/boringssl/src/crypto/bn/asm/
armv8-mont.pl 45 *STDOUT=*OUT;
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
platformsettings.py 242 command_args, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
321 ['sudo', '-nv'], stdin=subprocess.PIPE, stdout=subprocess.PIPE,
322 stderr=subprocess.STDOUT)
323 stdout = p.communicate()[0]
327 return not p.returncode and not stdout
359 sysctl_args, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
360 stdout = sysctl.communicate()[0]
361 return sysctl.returncode, stdout
389 stdin=subprocess.PIPE, stdout=subprocess.PIPE
    [all...]
  /external/v8/tools/
ll_prof.py 690 shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
691 pipe = process.stdout
727 shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
728 pipe = process.stdout
909 sys.stdout.flush()
    [all...]
  /frameworks/compile/libbcc/gdb_plugin/
android-commands.py 55 p = subprocess.Popen(stdout=subprocess.PIPE, stderr=subprocess.STDOUT, *popenargs, **kwargs)
532 stderr=subprocess.STDOUT,
533 stdout=open('/dev/null', 'w'))
  /build/tools/releasetools/
build_image.py 48 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
  /cts/apps/CameraITS/pymodules/its/
device.py 125 proc = subprocess.Popen(command.split(), stdout=subprocess.PIPE)
156 stdout=subprocess.PIPE,
207 stdout=subprocess.PIPE)
208 logcat = proc.stdout
782 proc = subprocess.Popen(command.split(), stdout=subprocess.PIPE)
    [all...]
  /external/autotest/scheduler/
drone_utility.py 7 2. It receives instructions via stdin and replies via stdout.
357 subprocess.Popen(command, stdout=out_file, stderr=subprocess.STDOUT,
440 # stdout and stderr needs to be direct to /dev/null, otherwise existing
443 command, shell=False, stdin=None, stdout=open('/dev/null', 'w'),

Completed in 718 milliseconds

1 2 3 4 5 67 8 91011>>