HomeSort by relevance Sort by last modified time
    Searched refs:stdin (Results 51 - 75 of 850) sorted by null

1 23 4 5 6 7 8 91011>>

  /development/scripts/
symbol.py 189 child = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
194 child.stdin.write("0x%s\n" % addr)
195 child.stdin.flush()
212 child.stdin.write("\n")
215 child.stdin.close()
321 process = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
322 process.stdin.write(mangled_symbol)
323 process.stdin.write("\n")
324 process.stdin.close()
stack 39 print " stdin."
63 print "Reading native crash info from stdin"
64 f = sys.stdin
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
systemhost.py 44 self.stdin = sys.stdin
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/
prettify.rb 24 patch_data = $stdin.read
  /external/harfbuzz_ng/test/shaping/
run-tests.sh 12 set /dev/stdin
  /external/libvorbis/examples/
vorbisfile_example.c 18 /* Takes a vorbis bitstream from stdin and writes raw stereo PCM to
28 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */
40 #ifdef _WIN32 /* We need to set stdin/stdout to binary mode. Damn windows. */
43 _setmode( _fileno( stdin ), _O_BINARY );
47 if(ov_open_callbacks(stdin, &vf, NULL, 0, OV_CALLBACKS_NOCLOSE) < 0) {
  /external/lldb/utils/misc/
grep-svn-log.py 54 line = sys.stdin.readline()
82 sys.stdin.close()
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toy.ml 15 let stream = Lexer.lex (Stream.of_channel stdin) in
  /external/nanopb-c/tests/basic_stream/
decode_stream.c 1 /* Same as test_decode1 but reads from stdin directly.
57 /* This binds the pb_istream_t to stdin */
74 stream.state = stdin;
75 SET_BINARY_MODE(stdin);
  /external/nanopb-c/tests/extensions/
decode_extensions.c 29 SET_BINARY_MODE(stdin);
30 count = fread(buffer, 1, sizeof(buffer), stdin);
  /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
102 stdin and stderr are not updated by the communicate() method.
179 Interact with process: Send data to stdin. Read data from stdout
192 stdin
193 If the stdin argument is PIPE, this attribute is a file object
240 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
308 pipe = Popen("cmd", shell=True, bufsize=bufsize, stdin=PIPE).stdin
314 stdin=PIPE, stdout=PIPE, close_fds=True
    [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
102 stdin and stderr are not updated by the communicate() method.
179 Interact with process: Send data to stdin. Read data from stdout
192 stdin
193 If the stdin argument is PIPE, this attribute is a file object
240 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
308 pipe = Popen("cmd", shell=True, bufsize=bufsize, stdin=PIPE).stdin
314 stdin=PIPE, stdout=PIPE, close_fds=True
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t054main.py 95 stdin=StringIO(input),
121 stdin=StringIO(input),
149 stdin=StringIO(input),
180 stdin=StringIO(input),
221 stdin=StringIO("a+b"),
264 stdin=StringIO("a+b"),
309 stdin=StringIO("b"),
  /external/bzip2/
dlltest.c 132 if((fn_r == NULL && (BZ2fp_r = BZ2_bzdopen(fileno(stdin),"rb"))==NULL)
153 fp_r = stdin;
168 if(fp_r!=stdin)fclose(fp_r);
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
console.cc 59 // stdin was closed in Stop(), so we can't restart.
77 close(fileno(stdin));
106 const int fd = fileno(stdin);
141 while (fgets(input_buffer, sizeof(input_buffer), stdin) != NULL) {
  /external/chromium_org/third_party/libjpeg_turbo/
cdjpeg.c 144 * Routines to establish binary I/O mode for stdin and stdout.
151 FILE * input_file = stdin;
154 setmode(fileno(stdin), O_BINARY);
157 if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
158 fprintf(stderr, "Cannot reopen stdin\n");
  /external/jpeg/
cdjpeg.c 144 * Routines to establish binary I/O mode for stdin and stdout.
151 FILE * input_file = stdin;
154 setmode(fileno(stdin), O_BINARY);
157 if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
158 fprintf(stderr, "Cannot reopen stdin\n");
  /external/llvm/lib/Support/
DynamicLibrary.cpp 150 EXPLICIT_SYMBOL(stdin);
156 #ifndef stdin
157 EXPLICIT_SYMBOL(stdin);
  /external/qemu/distrib/jpeg-6b/
cdjpeg.c 144 * Routines to establish binary I/O mode for stdin and stdout.
151 FILE * input_file = stdin;
154 setmode(fileno(stdin), O_BINARY);
157 if ((input_file = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
158 fprintf(stderr, "Cannot reopen stdin\n");
  /external/chromium_org/third_party/libvpx/
run_perl.py 16 parser.add_option('-i', '--input', help='file passed to stdin.')
26 subprocess.check_call(['perl', options.script], stdout=fo, stdin=fi)
  /external/chromium_org/third_party/libvpx/source/libvpx/tools/
lint-hunks.py 115 stdin=show.stdout, stderr=subprocess.PIPE)
120 stdin=subprocess.PIPE, stderr=subprocess.PIPE)
121 stdin = open(os.path.join(tl, filename)).read()
122 lint_out = lint.communicate(stdin)[1]
  /external/chromium_org/third_party/simplejson/
tool.py 18 infile = sys.stdin
  /external/chromium_org/third_party/skia/tools/
add_codereview_message.py 11 multi-line) message on stdin. It appends the message to the given issue.
63 message = sys.stdin.read()
  /external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
bwe_plot.sh 24 log=$(</dev/stdin)
  /external/e2fsprogs/tests/progs/
crcsum.c 47 f = stdin;

Completed in 1537 milliseconds

1 23 4 5 6 7 8 91011>>