/external/chromium_org/tools/gn/secondary/build/config/win/ |
get_msvc_config_real.py | 112 stdout from reg.exe, or None for failure. 122 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 123 # Obtain the stdout from reg.exe, reading to the end so p.returncode is valid 147 stdout from reg.exe, or None for failure. 293 p = subprocess.Popen(['cygpath', path], stdout=subprocess.PIPE) 431 args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 443 popen = subprocess.Popen(args, shell=True, stdout=subprocess.PIPE) 537 args, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) [all...] |
/external/chromium_org/tools/gyp/test/lib/ |
TestCommon.py | 56 stdout = "expected standard output from the program", 271 sys.stdout.write("Missing expected lines from %s:\n" % title) 273 sys.stdout.write(' ' + repr(line) + '\n') 274 sys.stdout.write(self.banner(title + ' ')) 275 sys.stdout.write(output) 297 sys.stdout.write("Missing any expected line from %s:\n" % title) 299 sys.stdout.write(' ' + repr(line) + '\n') 300 sys.stdout.write(self.banner(title + ' ')) 301 sys.stdout.write(output) 370 sys.stdout.write("Unexpected lines in %s:\n" % title [all...] |
/external/compiler-rt/lib/asan/scripts/ |
asan_symbolize.py | 71 stdout=subprocess.PIPE) 84 function_name = self.pipe.stdout.readline().rstrip() 87 file_name = self.pipe.stdout.readline().rstrip() 123 stdin=subprocess.PIPE, stdout=subprocess.PIPE) 131 function_name = self.pipe.stdout.readline().rstrip() 132 file_name = self.pipe.stdout.readline().rstrip()
|
/external/tcpdump/ |
print-atalk.c | 265 fputs(tstr, stdout); 403 fputs(tstr, stdout); 413 fputs(tstr, stdout); 455 fputs(tstr, stdout); 467 fputs(tstr, stdout); 484 fputs(tstr, stdout);
|
print-bootp.c | 140 fputs(tstr + 1, stdout); 150 fputs(tstr + 1, stdout); 174 fputs(tstr, stdout); 590 fputs(tok2str(nbo2str, NULL, tag), stdout); local 604 fputs(tok2str(oo2str, NULL, tag), stdout); local 804 fputs(tstr, stdout);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_dist.py | 71 with captured_stdout() as stdout: 73 stdout.seek(0) 74 self.assertEqual(stdout.read(), '') 77 with captured_stdout() as stdout: 79 stdout.seek(0) 80 self.assertEqual(stdout.read(), '')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_dist.py | 71 with captured_stdout() as stdout: 73 stdout.seek(0) 74 self.assertEqual(stdout.read(), '') 77 with captured_stdout() as stdout: 79 stdout.seek(0) 80 self.assertEqual(stdout.read(), '')
|
/external/chromium_org/tools/win/toolchain/ |
toolchain.py | 50 sys.stdout.write('Cleaning up temporaries...\n') 60 sys.stdout.write('Downloading %s...' % url) 71 sys.stdout.write('.') 72 sys.stdout.write('\n') 143 sys.stdout.write( 153 sys.stdout.write('Windows 8 SDK failed to download, retrying.\n') 226 sys.stdout.write('Extracting %s...\n' % iso_path) 239 sys.stdout.write('Extracting %s...\n' % msi_path) 425 sys.stdout.write('Pulling together required pieces...\n') 489 sys.stdout.write('Stubbing ammintrin.h...\n' [all...] |
/external/dropbear/libtomcrypt/demos/ |
tv_gen.c | 768 printf("Generating hash vectors..."); fflush(stdout); hash_gen(); printf("done\n"); 769 printf("Generating cipher vectors..."); fflush(stdout); cipher_gen(); printf("done\n"); 770 printf("Generating HMAC vectors..."); fflush(stdout); hmac_gen(); printf("done\n"); 771 printf("Generating OMAC vectors..."); fflush(stdout); omac_gen(); printf("done\n"); 772 printf("Generating PMAC vectors..."); fflush(stdout); pmac_gen(); printf("done\n"); 773 printf("Generating EAX vectors..."); fflush(stdout); eax_gen(); printf("done\n"); 774 printf("Generating OCB vectors..."); fflush(stdout); ocb_gen(); printf("done\n"); 775 printf("Generating CCM vectors..."); fflush(stdout); ccm_gen(); printf("done\n"); 776 printf("Generating GCM vectors..."); fflush(stdout); gcm_gen(); printf("done\n"); 777 printf("Generating BASE64 vectors..."); fflush(stdout); base64_gen(); printf("done\n") [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 343 # Can't test printing to real stdout without comparing output 345 save_stdout = sys.stdout 346 sys.stdout = StringIO.StringIO() 355 print >> sys.stdout, 1, 2, 3 356 print >> sys.stdout, 1, 2, 3, 357 print >> sys.stdout 358 print >> sys.stdout, 0 or 1, 0 or 1, 359 print >> sys.stdout, 0 or 1 374 oldstdout = sys.stdout 375 sys.stdout = Gulp( [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 341 # Can't test printing to real stdout without comparing output 343 save_stdout = sys.stdout 344 sys.stdout = StringIO.StringIO() 353 print >> sys.stdout, 1, 2, 3 354 print >> sys.stdout, 1, 2, 3, 355 print >> sys.stdout 356 print >> sys.stdout, 0 or 1, 0 or 1, 357 print >> sys.stdout, 0 or 1 372 oldstdout = sys.stdout 373 sys.stdout = Gulp( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 343 # Can't test printing to real stdout without comparing output 345 save_stdout = sys.stdout 346 sys.stdout = StringIO.StringIO() 355 print >> sys.stdout, 1, 2, 3 356 print >> sys.stdout, 1, 2, 3, 357 print >> sys.stdout 358 print >> sys.stdout, 0 or 1, 0 or 1, 359 print >> sys.stdout, 0 or 1 374 oldstdout = sys.stdout 375 sys.stdout = Gulp( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_grammar.py | 341 # Can't test printing to real stdout without comparing output 343 save_stdout = sys.stdout 344 sys.stdout = StringIO.StringIO() 353 print >> sys.stdout, 1, 2, 3 354 print >> sys.stdout, 1, 2, 3, 355 print >> sys.stdout 356 print >> sys.stdout, 0 or 1, 0 or 1, 357 print >> sys.stdout, 0 or 1 372 oldstdout = sys.stdout 373 sys.stdout = Gulp( [all...] |
/external/openssh/ |
ssh-keygen.c | 278 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_BEGIN); 279 fprintf(stdout, "Comment: \"%s\"\n", comment); 280 dump_base64(stdout, blob, len); 281 fprintf(stdout, "%s\n", SSH_COM_PUBLIC_END); 292 if (!PEM_write_RSA_PUBKEY(stdout, k->rsa)) 296 if (!PEM_write_DSA_PUBKEY(stdout, k->dsa)) 301 if (!PEM_write_EC_PUBKEY(stdout, k->ecdsa)) 316 if (!PEM_write_RSAPublicKey(stdout, k->rsa)) 321 if (!PEM_write_DSAPublicKey(stdout, k->dsa)) 660 ok = key_write(k, stdout); [all...] |
/bionic/tests/ |
benchmark_main.cpp | 167 fflush(stdout); 201 fflush(stdout);
|
/bootable/recovery/ |
install.cpp | 125 fprintf(stdout, "E:Can't run %s (%s)\n", binary, strerror(errno)); 157 fflush(stdout);
|
/cts/apps/cts-usb-accessory/ |
cts-usb-accessory.c | 48 fwrite(buffer, 1, ret, stdout); 54 fflush(stdout);
|
/external/chromium_org/build/android/ |
adb_logcat_monitor.py | 62 stdout=logcat_file, 82 stdout=subprocess.PIPE,
|
/external/chromium_org/build/win/importlibs/ |
create_importlib_win.py | 118 self._Shell(cmdline, cwd=self._temp_dir, stdout=open(os.devnull)) 154 self._Shell(cmdline, cwd=self._temp_dir, stdout=open(os.devnull))
|
/external/chromium_org/media/tools/layout_tests/ |
layouttests.py | 172 if sys.stdout.isatty(): 173 default_encoding = sys.stdout.encoding
|
/external/chromium_org/native_client_sdk/src/examples/tutorial/debugging/ |
debugging.c | 102 fprintf(stdout, "%s\n", str); 103 fflush(stdout);
|
/external/chromium_org/third_party/WebKit/Source/core/scripts/ |
action_derivedsourcesallinone.py | 184 process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 189 idlFileNames.append(process.stdout.readline().rstrip())
|
/external/chromium_org/third_party/libxml/src/ |
testRelax.c | 129 xmlRelaxNGDump(stdout, schema); 132 xmlRelaxNGDumpTree(stdout, schema);
|
testThreads.c | 59 xmlGenericErrorContext = stdout; 76 if (xmlGenericErrorContext != stdout) {
|
testXPath.c | 100 xmlXPathDebugDumpCompExpr(stdout, comp, 0); 110 xmlXPathDebugDumpObject(stdout, res, 0);
|