/external/iproute2/tc/ |
tc.c | 256 if (freopen(name, "r", stdin) == NULL) { 271 while (getcmdline(&line, &len, stdin) != -1) {
|
/external/libvpx/libvpx/build/make/ |
ads2gas.pl | 27 while (<STDIN>) 197 $_ = <STDIN>;
|
/external/llvm/include/llvm/Support/ |
MemoryBuffer.h | 109 /// getSTDIN - Read all of stdin into a file buffer, and return it. 114 /// getFileOrSTDIN - Open the specified file as a MemoryBuffer, or open stdin
|
/external/llvm/utils/vim/ |
vimrc | 129 " Build a clang commandline to do code completion on stdin. 136 " Copy the contents of the current buffer into a string for stdin.
|
/external/openfst/src/include/fst/extensions/far/ |
compile-strings.h | 231 FSTERROR() << "FarCompileStrings: read from a file instead of stdin or" 245 *istrm, inputs[i].empty() ? "stdin" : inputs[i],
|
/external/protobuf/src/google/protobuf/compiler/ |
plugin.proto | 37 // just a program that reads a CodeGeneratorRequest from stdin and writes a 51 // An encoded CodeGeneratorRequest is written to the plugin's stdin.
|
/external/webkit/Tools/DumpRenderTree/cg/ |
ImageDiffCG.cpp | 79 size_t bytesRead = fread(buffer, 1, bytesToRead, stdin); 199 while (fgets(buffer, sizeof(buffer), stdin)) {
|
/external/webkit/Tools/DumpRenderTree/gtk/ |
ImageDiff.cpp | 53 size_t bytesRead = fread(imageBuffer, 1, bytesToRead, stdin); 195 while (fgets(buffer, sizeof(buffer), stdin)) {
|
/external/webkit/Tools/DumpRenderTree/win/ |
ImageDiffCairo.cpp | 80 size_t bytesRead = fread(buffer, 1, bytesToRead, stdin); 202 while (fgets(buffer, sizeof(buffer), stdin)) {
|
/ndk/sources/cxx-stl/llvm-libc++/test/input.output/file.streams/c.files/ |
cstdio.pass.cpp | 71 #ifndef stdin 72 #error stdin not defined
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/libexec/gcc/mipsel-linux-android/4.6/ |
lto-wrapper | |
/prebuilts/gcc/linux-x86/x86/i686-linux-android-4.6/libexec/gcc/i686-linux-android/4.6/ |
lto-wrapper | |
/external/ganymed-ssh2/ |
FAQ.html | 85 through stdin and stdout. However, you also have to implement terminal logic (e.g., escape sequence
216 OutputStream stdin = new BufferedOutputStream(mysession.getStdin(), 8192);
336 <li>Execute "cat > filename.txt" on the remote side and pump the data into stdin. This method is NOT recommended (and won't work on Windows...).</li>
341 written. If you close the stdin stream and immediatelly close the session (or the whole connection) then
352 OutputStream stdin = sess.getStdin();
357 /* stdin stream (e.g., with a BufferedOutputStream). */
|
/external/llvm/lib/Support/ |
MemoryBuffer.cpp | 163 /// getFileOrSTDIN - Open the specified file as a MemoryBuffer, or open stdin 165 /// in *ErrStr with a reason. If stdin is empty, this API (unlike getSTDIN) 417 // Read in all of the data from stdin, we cannot mmap stdin. 419 // FIXME: That isn't necessarily true, we should try to mmap stdin and 423 return getMemoryBufferForStream(0, "<stdin>", result);
|
/ndk/sources/host-tools/nawk-20071023/ |
lib.c | 99 infile = stdin; /* no filenames, so use stdin */ 123 while (argno < *ARGC || infile == stdin) { 139 infile = stdin; 163 if (infile != stdin) 176 if (infile != NULL && infile != stdin)
|
/external/libpng/contrib/gregbook/ |
wpng.c | 10 interactive text from the keyboard while stdin is redirected. Thanks 303 ": must give input filename or provide image data via stdin\n"); 308 setmode(fileno(stdin), O_BINARY); 311 if ((wpng_info.infile = fdopen(fileno(stdin), "rb")) == NULL) { 313 ": unable to reopen stdin in binary mode\n"); 420 "pnmfile or stdin must be a binary PGM (`P5'), PPM (`P6') or (extremely\n" 424 "``.png'' extension; files read from stdin are converted and sent to stdout.\n"
|
/external/ppp/pppd/ |
tty.c | 146 bool notty = 0; /* Stdin/out is not a tty */ 419 option_error("no device specified and stdin is not a tty"); 483 * the one on stdin, pretend they didn't specify any. 484 * If the device is already open read/write on stdin, 970 * the pty master side and the serial port (or stdin/stdout). 1059 warn("couldn't set %s to nonblock: %m", (ifd==0? "stdin": "tty")); 1142 /* end of file from stdin */ [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
stdio.h | 145 extern struct _IO_FILE *stdin; /* Standard input stream. */ 149 #define stdin stdin macro 405 /* Read formatted input from stdin. 453 /* Read formatted input from stdin into argument list ARG. 512 /* Read a character from stdin. 603 /* Get a newline-terminated string from stdin, removing the newline.
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
stdio.h | 145 extern struct _IO_FILE *stdin; /* Standard input stream. */ 149 #define stdin stdin macro 405 /* Read formatted input from stdin. 453 /* Read formatted input from stdin into argument list ARG. 512 /* Read a character from stdin. 603 /* Get a newline-terminated string from stdin, removing the newline.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
stdio.h | 145 extern struct _IO_FILE *stdin; /* Standard input stream. */ 149 #define stdin stdin macro 405 /* Read formatted input from stdin. 453 /* Read formatted input from stdin into argument list ARG. 512 /* Read a character from stdin. 603 /* Get a newline-terminated string from stdin, removing the newline.
|
/external/zlib/src/examples/ |
zlib_how.html | 58 <tt>SET_BINARY_MODE()</tt> will be used later on <tt>stdin</tt> and <tt>stdout</tt>, at the beginning of <tt>main()</tt>. 470 a command-line program by running data through the above routines from <tt>stdin</tt> to 484 if (ferror(stdin)) 485 fputs("error reading stdin\n", stderr); 504 <tt>zpipe</tt> command is simply a compression pipe from <tt>stdin</tt> to <tt>stdout</tt>, if 510 /* compress or decompress from stdin to stdout */ 516 SET_BINARY_MODE(stdin); 521 ret = def(stdin, stdout, Z_DEFAULT_COMPRESSION); 529 ret = inf(stdin, stdout);
|
/external/dropbear/ |
svr-chansession.c | 628 /* Execute a command and set up redirection of stdin/stdout/stderr without a 641 /* redirect stdin/stdout/stderr */ 667 /* redirect stdin/stdout */ 770 /* redirect stdin/stdout/stderr */ 888 /* close file descriptors except stdin/stdout/stderr
|
/external/harfbuzz_ng/util/ |
options.cc | 417 setmode (fileno (stdin), _O_BINARY); 419 while (!feof (stdin)) { 420 size_t ret = fread (buf, 1, sizeof (buf), stdin); 421 if (ferror (stdin)) 523 fp = stdin;
|
/external/netcat/ |
netcat.c | 68 int dflag; /* detached, no stdin */ 757 * Loop that polls on the network file descriptor and stdin. 764 int n, wfd = fileno(stdin); 774 /* Set up STDIN FD. */ 1047 \t-d Detach from stdin\n\
|
/external/netperf/ |
netserver.c | 567 fflush (stdin); 577 /* Redirect stdin from "/dev/null". */ 586 perror ("netserver: closing stdin file descriptor"); 591 perror ("netserver: duplicate /dev/null read file descr. to stdin"); 667 /* Pass the server_sock as stdin for the new process. */
|