/external/openssl/crypto/rc4/ |
rc4.c | 68 " -in arg - input file - default stdin\n", 122 in=stdin;
|
/development/ndk/platforms/android-3/include/ |
stdio.h | 195 #define stdin (&__sF[0]) macro 416 #define getchar() getc(stdin) 418 #define getchar_unlocked() getc_unlocked(stdin)
|
/development/ndk/platforms/android-8/include/ |
stdio.h | 195 #define stdin (&__sF[0]) macro 416 #define getchar() getc(stdin) 418 #define getchar_unlocked() getc_unlocked(stdin)
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
main.py | 42 self.stdin = sys.stdin 130 self.stdin, encoding=options.encoding
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
executive_unittest.py | 209 def main(platform, stdin, stdout, cmd, args): 214 stdout.write(stdin.read()) 220 sys.exit(main(sys.platform, sys.stdin, sys.stdout, sys.argv[1], sys.argv[2:]))
|
/external/chromium_org/third_party/codesighs/ |
nm2tsv.c | 58 ** Default is stdin. 91 static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin is default."}; 294 outOptions->mInput = stdin; 295 outOptions->mInputName = strdup("stdin"); 302 ERROR_REPORT(retval, "stdin/stdout", "Unable to strdup."); 368 if(NULL != outOptions->mInput && stdin != outOptions->mInput) 437 if(NULL != inOptions->mInput && stdin != inOptions->mInput)
|
/external/chromium_org/third_party/libjpeg_turbo/ |
rdjpgcom.c | 495 /* default input file is stdin */ 497 setmode(fileno(stdin), O_BINARY); 500 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) { 501 fprintf(stderr, "%s: can't open stdin\n", progname); 505 infile = stdin;
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/ |
cros_interface.py | 34 stderr=devnull, stdin=devnull, shell=False) 54 stderr=subprocess.PIPE, stdin=devnull) 103 stdin=devnull, stdout=devnull, stderr=devnull)
|
/external/deqp/android/scripts/ |
debug.py | 95 gdbServerProcess = subprocess.Popen("%s shell run-as com.drawelements.deqp lib/gdbserver localhost:%i --attach %i" % (adbCmd, targetGDBPort, programPid), shell=True, stdin=subprocess.PIPE, stdout=open("gdbserver-stdout.txt", "wb"), stderr=open("gdbserver-stderr.txt", "wb")) 129 jdbProcess = subprocess.Popen("%s -connect com.sun.jdi.SocketAttach:hostname=localhost,port=%i -sourcepath ../package" % (jdbCmd, jdbPort), shell=True, stdin=subprocess.PIPE, stdout=open("jdb-stdout.txt", "wb"), stderr=open("jdb-stderr.txt", "wb")) 156 jdbProcess.stdin.write("quit\n")
|
/external/jpeg/ |
rdjpgcom.c | 476 /* default input file is stdin */ 478 setmode(fileno(stdin), O_BINARY); 481 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) { 482 fprintf(stderr, "%s: can't open stdin\n", progname); 486 infile = stdin;
|
/external/libpcap/ |
savefile.c | 166 if (p->rfile != stdin) 182 fp = stdin; 205 if (fp != stdin)
|
/external/lldb/test/pexpect-2.4/examples/ |
bd_serv.py | 72 def daemonize (stdin='/dev/null', stdout='/dev/null', stderr='/dev/null'): 76 case, stdin, stdout and stderr are all set up for you to refer to the 89 The stdin, stdout, and stderr arguments are file names that will be opened 90 and be used to replace the standard file descriptors in sys.stdin, 122 si = open(stdin, 'r') 125 os.dup2(si.fileno(), sys.stdin.fileno())
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
mock_drt.py | 141 def main(argv, host, stdin, stdout, stderr): 145 drt = MockDRT(options, args, host, stdin, stdout, stderr) 170 def __init__(self, options, args, host, stdin, stdout, stderr): 175 self._stdin = stdin 286 sys.exit(main(sys.argv[1:], SystemHost(), sys.stdin, sys.stdout, sys.stderr))
|
/external/compiler-rt/lib/asan/scripts/ |
asan_symbolize.py | 76 result = subprocess.Popen(cmd, stdin=subprocess.PIPE, 91 print >> self.pipe.stdin, symbolizer_input 134 stdin=subprocess.PIPE, stdout=subprocess.PIPE) 141 print >> self.pipe.stdin, offset 366 line = sys.stdin.readline()
|
/external/chromium_org/tools/valgrind/asan/third_party/ |
asan_symbolize.py | 27 logfile = sys.stdin 85 result = subprocess.Popen(cmd, stdin=subprocess.PIPE, 100 print >> self.pipe.stdin, symbolizer_input 146 stdin=subprocess.PIPE, stdout=subprocess.PIPE) 153 print >> self.pipe.stdin, offset 424 parser.add_argument('-l','--logfile', default=sys.stdin, type=argparse.FileType('r'), 425 help='set log file name to parse, default is stdin') 439 logfile = sys.stdin
|
/external/llvm/utils/lit/lit/ |
TestRunner.py | 60 # Apply the redirections, we use (N,) as a sentinel to indicate stdin, 90 raise InternalShellError(j,"Unsupported redirect for stdin") 114 stdin, stdout, stderr = final_redirects 149 stdin = stdin, 155 # Immediately close stdin for any process taking stdin from us. 156 if stdin == subprocess.PIPE: 157 procs[-1].stdin.close() 158 procs[-1].stdin = Non [all...] |
/external/libpng/contrib/pngminus/ |
png2pnm.c | 34 #define STDIN 0 63 FILE *fp_rd = stdin; 105 else if (fp_rd == stdin) 133 /* set stdin/stdout if required to binary */ 134 if (fp_rd == stdin) 136 setmode (STDIN, O_BINARY);
|
/build/tools/ |
product_debug.py | 79 lines = sys.stdin.readlines()
|
/external/chromium-trace/ |
update.py | 96 p = subprocess.Popen(yuic_args, stdin=subprocess.PIPE)
|
/external/chromium_org/build/android/ |
asan_symbolize.py | 93 'Use stdin if not specified.') 98 asan_input = sys.stdin
|
/external/chromium_org/build/android/pylib/symbols/ |
elf_symbolizer.py | 46 its stdin and getting results on its stdout. 205 [STDIN] [STDOUT] (from addr2line's viewpoint) 223 # The request queue (i.e. addresses pushed to addr2line's stdin and not 242 """Pushes an address to addr2line's stdin (and keeps track of it).""" 323 self._proc.stdin.write('%s\n' % hex(addr)) 327 self._proc.stdin.write('\n') 328 self._proc.stdin.flush() 397 stdin=subprocess.PIPE, stderr=sys.stderr, close_fds=True)
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
make_css_property_names.py | 225 gperf = subprocess.Popen(gperf_args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, universal_newlines=True)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/formatter/ |
main.py | 44 host.print_(reformat_source(host.stdin.read(), autopep8_options, fixers, '<stdin>'), end='')
|
/external/chromium_org/third_party/android_platform/development/scripts/ |
stack | 64 print " stdin." 146 print "Reading native crash info from stdin" 147 f = sys.stdin
|
/external/chromium_org/third_party/libxml/src/ |
testURI.c | 101 if (fgets (&str[0], sizeof (str) - 1, stdin) == NULL)
|