Searched refs:stdin (Results 226 - 250 of 517) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gyp/tools/
H A Dpretty_gyp.py145 data = sys.stdin.read().splitlines()
/external/chromium_org/tools/telemetry/third_party/pyserial/serial/tools/
H A Dminiterm.py122 self.fd = sys.stdin.fileno()
304 filename = sys.stdin.readline().rstrip('\r\n')
362 port = sys.stdin.readline().strip()
400 self.serial.baudrate = int(sys.stdin.readline().strip())
/external/chromium_org/v8/src/
H A Dd8-debug.cc73 char* str = fgets(command, kBufferSize, stdin);
/external/clang/tools/scan-view/
H A Dstartfile.py47 # for TTY programs, we need stdin/out
57 pipe = subprocess.Popen(cmdline, stdin=inout, stdout=inout,
/external/e2fsprogs/lib/ss/
H A Dlisten.c80 if (fgets(input, BUFSIZ, stdin) == input)
/external/icu/icu4c/source/tools/toolutil/
H A Dfilestrm.c206 return (FileStream*)stdin;
/external/libvpx/libvpx/tools/
H A Dftfy.sh56 NEW_CHANGEID=I$(echo $NEW_CHANGEID | git hash-object --stdin)
/external/lldb/examples/scripting/
H A Ddictionary.c174 while (!done && fgets (buffer, sizeof(buffer), stdin))
/external/mesa3d/src/gallium/tools/trace/
H A Dformat.py125 if stream is sys.stdin:
/external/owasp/sanitizer/tools/
H A Dgooglecode_upload.py185 user_name = sys.stdin.readline().rstrip()
/external/protobuf/gtest/scripts/
H A Dfuse_gtest_files.py124 answer = sys.stdin.readline().strip()
/external/srec/config/en.us/dictionary/
H A Dcmu2nuance.cpp46 for (int lineno = 1; NULL != fgets(line, sizeof(line), stdin); lineno++)
/external/srec/portable/src/UNIX/
H A DPFileSystemUNIXImpl.c59 CHKLOG(rc, PANSIFileSystemSingleton->createPFile(PANSIFileSystemSingleton, L("/dev/stdin"), isLittleEndian, &PSTDIN));
61 impl->value = stdin;
/external/zlib/src/examples/
H A Dfitblk.c126 /* compress from stdin to fixed-size block on stdout */
155 /* compress from stdin until output full, or no more input */
158 ret = partcompress(stdin, &def);
/external/chromium_org/third_party/cython/src/Cython/Includes/libc/
H A Dstdio.pxd11 cdef FILE *stdin
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DTwoWayCommunication.cc74 EXPECT_TRUE(fgets(myStr, 10, stdin) != NULL);
78 EXPECT_TRUE(fgets(myStr, 10, stdin) != NULL);
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Declipse.py96 proc = subprocess.Popen(args=command, stdin=subprocess.PIPE,
234 stdin=subprocess.PIPE, stdout=subprocess.PIPE)
/external/chromium_org/v8/samples/
H A Dlineprocessor.cc225 while (!feof(stdin)) {
370 res = fgets(buffer, kBufferSize, stdin);
/external/chromium_org/v8/tools/testrunner/server/
H A Dmain.py47 def __init__(self, pidfile, root, stdin="/dev/null",
49 super(Server, self).__init__(pidfile, stdin, stdout, stderr)
/external/nanopb-c/tests/alltypes/
H A Ddecode_alltypes.c199 SET_BINARY_MODE(stdin);
200 count = fread(buffer, 1, sizeof(buffer), stdin);
/external/nanopb-c/tests/alltypes_pointer/
H A Ddecode_alltypes_pointer.c157 SET_BINARY_MODE(stdin);
158 count = fread(buffer, 1, sizeof(buffer), stdin);
/external/nanopb-c/tests/backwards_compatibility/
H A Ddecode_legacy.c188 SET_BINARY_MODE(stdin);
189 count = fread(buffer, 1, sizeof(buffer), stdin);
/external/openssl/crypto/bio/
H A Dbss_file.c60 * 03-Dec-1997 rdenny@dc3.com Fix bug preventing use of stdin/stdout
313 if ((size_t)ptr >= (size_t)stdin &&
314 (size_t)ptr < (size_t)(stdin+_IOB_ENTRIES))
342 /* Dangerous to set stdin/stdout to raw (unless redirected) */
/external/bzip2/
H A Dbzip2.c189 /*-- source modes; F==file, I==stdin, O==stdout --*/
532 if (zStream != stdin) fclose(zStream);
625 if (zStream != stdin) fclose(zStream);
1147 copyFileName ( inName, (Char*)"(stdin)" );
1228 inStr = stdin;
1331 copyFileName ( inName, (Char*)"(stdin)" );
1414 inStr = stdin;
1416 if ( isatty ( fileno ( stdin ) ) ) {
1525 case SM_I2O: copyFileName ( inName, (Char*)"(stdin)" ); break;
1557 if ( isatty ( fileno ( stdin ) ) ) {
[all...]
/external/chromium_org/remoting/host/linux/
H A Dlinux_me2me_host.py449 # reading from stdin. If this code runs as a shell background job in a
450 # terminal, any reading from stdin causes the job to be suspended.
459 stdin=open(os.devnull, "r"),
495 stdin=subprocess.PIPE)
499 self.host_proc.stdin.write(json.dumps(host_config.data))
500 self.host_proc.stdin.close()
767 # Copy the file-descriptors to create new stdin, stdout and stderr. Note
769 # stdin, stdout and stderr, detaching from the terminal.
770 os.dup2(devnull_fd, sys.stdin.fileno())
793 host processes via stdin, the
[all...]

Completed in 716 milliseconds

1234567891011>>