/external/clang/utils/analyzer/ |
SATestBuild.py | 114 sys.stdout = flushfile(sys.stdout) 190 stdout=PBuildLogFile, 193 stdout=PBuildLogFile, 228 stdout=PBuildLogFile, 285 stdout=LogFile, 400 # Auxiliary object to discard stdout. 446 # Discard everything coming out of stdout (CmpRun produces a lot of them). 447 OLD_STDOUT = sys.stdout 448 sys.stdout = Discarder( [all...] |
/external/chromium/build/mac/ |
strip_save_dsym | 52 stdout=subprocess.PIPE) 56 type_line = file_cmd.stdout.readline() 66 arch_line = file_cmd.stdout.readline() 98 stdout=subprocess.PIPE) 106 for otool_line in otool_cmd.stdout:
|
/external/chromium_org/build/mac/ |
strip_save_dsym | 52 stdout=subprocess.PIPE) 56 type_line = file_cmd.stdout.readline() 66 arch_line = file_cmd.stdout.readline() 98 stdout=subprocess.PIPE) 106 for otool_line in otool_cmd.stdout:
|
/external/chromium_org/net/tools/testserver/ |
testserver_base.py | 44 if self.__fd1 != sys.stdout and self.__fd1 != sys.stderr: 46 if self.__fd2 != sys.stdout and self.__fd2 != sys.stderr: 102 When running on Windows XP bots, stdout and stderr will be invalid file 182 sys.stdout = MultiplexerHack(sys.stdout, logfile) 184 sys.stdout = logfile 214 help='Enables or disables sys.stdout logging '
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/ |
result.py | 52 self._original_stdout = sys.stdout 64 sys.stdout = self._stdout_buffer 77 output = sys.stdout.getvalue() 88 sys.stdout = self._original_stdout 158 output = sys.stdout.getvalue()
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
mac_tool.py | 68 ibtoolout = subprocess.Popen(args, stdout=subprocess.PIPE) 70 for line in ibtoolout.stdout: 75 sys.stdout.write(current_section_header) 77 sys.stdout.write(line) 99 subprocess.call(args, stdout=fp)
|
win_tool.py | 75 stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 88 stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 120 stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 122 # Filter junk out of stdout, and write filtered versions. Output we want 141 stdout=subprocess.PIPE, stderr=subprocess.STDOUT) 156 stdout=subprocess.PIPE, stderr=subprocess.STDOUT [all...] |
/external/valgrind/main/perf/ |
ffbench.c | 253 fprintf(stdout, "Can't allocate data array.\n"); 315 fprintf(stdout, 322 fprintf(stdout, "%d passes. No errors in results.\n", npasses); 324 fprintf(stdout, "%d passes. %d errors in results.\n", 360 fprintf(stdout, "Cannot open output file.\n");
|
/frameworks/wilhelm/tests/examples/ |
slesTestSawtoothBufferQueue.cpp | 63 fprintf(stdout, "%u SL failure, exiting\n", res); 67 //fprintf(stdout, "%d SL success, proceeding...\n", res); 87 //fprintf(stdout, "BufferQueueCallback called\n"); 89 //fprintf(stdout, " pContext=%p\n", pContext); 94 //fprintf(stdout, "callback: before enqueue\n"); 101 //fprintf(stdout, "end of BufferQueueCallback()\n"); 205 fprintf(stdout, "bufferQueue example: after CreateAudioPlayer\n"); 209 fprintf(stdout, "bufferQueue example: after Realize\n"); 214 fprintf(stdout, "bufferQueue example: after GetInterface(PLAY)\n"); 245 fprintf(stdout, "bufferQueue example: starting to play\n") [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/ |
result.py | 52 self._original_stdout = sys.stdout 70 sys.stdout = self._stdout_buffer 87 output = sys.stdout.getvalue() 98 sys.stdout = self._original_stdout 167 output = sys.stdout.getvalue()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/ |
result.py | 52 self._original_stdout = sys.stdout 70 sys.stdout = self._stdout_buffer 87 output = sys.stdout.getvalue() 98 sys.stdout = self._original_stdout 167 output = sys.stdout.getvalue()
|
/external/linux-tools-perf/ |
builtin-top.c | 298 color_fprintf(stdout, PERF_COLOR_RED, "WARNING:"); 351 percent_color_fprintf(stdout, "%4.1f%%", pcnt); 368 fprintf(stdout, "\n%s: ", msg); 409 fprintf(stdout, "\n%s: ", msg); 450 fprintf(stdout, "\nMapped keys:\n"); 451 fprintf(stdout, "\t[d] display refresh delay. \t(%d)\n", top.delay_secs); 452 fprintf(stdout, "\t[e] display entries (lines). \t(%d)\n", top.print_entries); 455 fprintf(stdout, "\t[E] active event counter. \t(%s)\n", event_name(top.sym_evsel)); 457 fprintf(stdout, "\t[f] profile display filter (count). \t(%d)\n", top.count_filter); 459 fprintf(stdout, "\t[F] annotate display filter (percent). \t(%d%%)\n", sym_pcnt_filter) [all...] |
/development/testrunner/ |
run_command.py | 46 direct output of command to stdout. 72 direct output of command to stdout. 92 # None means direct to stdout 102 stdout=output_dest, 103 stderr=subprocess.STDOUT, 111 logger.SilentLog("failed to retrieve stdout from: %s" % cmd) 154 If successfull, the output (stdout and stderr) are discarded, 167 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE, 168 stderr=subprocess.STDOUT) 177 stdout=subprocess.PIPE, stderr=subprocess.STDOUT [all...] |
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/ |
gUnitBaseTest.java | 57 protected String stdout; field in class:gUnitBaseTest 81 PrintStream ps = null; // for redirecting stdout later 111 this.stdout = null; 119 this.stdout = out.toString(); 150 return this.stdout; 173 PrintStream ps = null; // for redirecting stdout later 241 this.stdout = ""; 250 // retVal could be actual return object from rule, stderr or stdout 251 this.stdout += out.toString(); 255 if ( out.toString().length()>0 ) return this.stdout; [all...] |
/external/chromium_org/third_party/android_testrunner/ |
run_command.py | 47 direct output of command to stdout. 73 direct output of command to stdout. 90 # None means direct to stdout 100 stdout=output_dest, 101 stderr=subprocess.STDOUT, 117 logger.SilentLog("failed to retrieve stdout from: %s" % cmd) 150 If successfull, the output (stdout and stderr) are discarded, 163 subproc = subprocess.Popen(binary, stdout=subprocess.PIPE, 164 stderr=subprocess.STDOUT) 173 stdout=subprocess.PIPE, stderr=subprocess.STDOUT [all...] |
/external/chromium_org/tools/python/google/ |
httpd_utils.py | 162 stdout=subprocess.PIPE, 164 logging.info('%s\n%s' % (kill_proc.stdout.read(), 169 stdout=subprocess.PIPE,
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
perf_profiler.py | 26 stdout=self._tmp_output_file, stderr=subprocess.STDOUT) 88 stderr=subprocess.STDOUT, 89 stdout=subprocess.PIPE).wait() 113 stdout=subprocess.PIPE, stderr=open(os.devnull, 'w')).communicate()[0]
|
/external/chromium_org/v8/tools/ |
nacl-run.py | 50 stdout=fd_out, 60 sys.stdout.write(output) 83 p = subprocess.Popen(['file', nexe], stdout=subprocess.PIPE)
|
/external/e2fsprogs/lib/ss/ |
listen.c | 36 (void) fputs(current_info->prompt, stdout); 37 (void) fflush(stdout); 43 putc('\n', stdout);
|
/external/e2fsprogs/misc/ |
lsattr.c | 98 print_flags(stdout, flags, pf_options); 99 fputc('\n', stdout); 101 print_flags(stdout, flags, pf_options);
|
/external/elfutils/tests/ |
saridx.c | 169 fputs ("ELF file:\n", stdout); 173 fputs ("archive:\n", stdout); 177 fputs ("unknown file:\n", stdout);
|
/external/hyphenation/ |
example.c | 177 fprintf(stdout,"%s\n",hyphword); 178 fflush(stdout); 181 fprintf(stdout,"%s\n", hword);
|
/external/icu4c/layout/ |
KernTable.cpp | 205 fprintf(stdout, " %.3d (%0.8x)\n", ((char*)tp - (char*)pairs)/KERN_PAIRINFO_SIZE, tkey); 211 fprintf(stdout, "binary found kerning pair %x:%x at %d, value: 0x%x (%g)\n", 213 fflush(stdout);
|
/external/qemu/android/protocol/ |
ui-commands-impl.c | 216 fprintf(stdout, "core-ui-control is now connected to the core at %s.", 220 fprintf(stdout, " Handshake: %s", handshake); 224 fprintf(stdout, "\n");
|
/external/valgrind/main/drd/tests/ |
circular_buffer.c | 120 fflush(stdout); 143 fflush(stdout); 175 fflush(stdout);
|