HomeSort by relevance Sort by last modified time
    Searched refs:stdin (Results 101 - 125 of 328) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
435 #define getchar() getc(stdin)
437 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
435 #define getchar() getc(stdin)
437 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
435 #define getchar() getc(stdin)
437 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
435 #define getchar() getc(stdin)
437 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
435 #define getchar() getc(stdin)
437 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
437 #define getchar() getc(stdin)
439 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r5/platforms/android-8/arch-arm/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
437 #define getchar() getc(stdin)
439 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
437 #define getchar() getc(stdin)
439 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
437 #define getchar() getc(stdin)
439 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r6/platforms/android-8/arch-arm/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
437 #define getchar() getc(stdin)
439 #define getchar_unlocked() getc_unlocked(stdin)
  /prebuilt/ndk/android-ndk-r6/platforms/android-8/arch-x86/usr/include/
stdio.h 216 #define stdin (&__sF[0]) macro
437 #define getchar() getc(stdin)
439 #define getchar_unlocked() getc_unlocked(stdin)
  /external/llvm/utils/lit/lit/
TestRunner.py 28 stdin=subprocess.PIPE,
76 # Apply the redirections, we use (N,) as a sentinal to indicate stdin,
106 raise NotImplementedError,"Unsupported redirect for stdin"
130 stdin, stdout, stderr = final_redirects
164 stdin = stdin,
170 # Immediately close stdin for any process taking stdin from us.
171 if stdin == subprocess.PIPE:
172 procs[-1].stdin.close(
    [all...]
  /hardware/qcom/media/mm-video/vidc/vdec/test/
omx_vdec_test.cpp 719 fflush(stdin);
721 fflush(stdin);
747 fflush(stdin);
749 fflush(stdin);
879 fflush(stdin);
881 fflush(stdin);
889 fflush(stdin);
891 fflush(stdin);
902 fflush(stdin);
904 fflush(stdin);
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
chromium.py 230 stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=None)
238 self._helper.stdin.write("x\n")
239 self._helper.stdin.close()
392 self._proc = subprocess.Popen(cmd, stdin=subprocess.PIPE,
409 self._proc.stdin.write(input)
523 self._proc.stdin.close()
527 # Closing stdin/stdout/stderr hangs sometimes on OS X,
chromium_unittest.py 62 # We reset stdin, so we should expect stdin.getValue = ""
64 self.driver._proc.stdin = StringIO.StringIO()
66 self.assertEqual(self.driver._proc.stdin.getvalue(), expected_stdin)
95 self.driver._proc.stdin = StringIO.StringIO()
  /external/libpng/contrib/pngminus/
png2pnm.c 33 #define STDIN 0
62 FILE *fp_rd = stdin;
104 else if (fp_rd == stdin)
132 /* set stdin/stdout if required to binary */
133 if (fp_rd == stdin)
135 setmode (STDIN, O_BINARY);
pnm2png.c 32 #define STDIN 0
63 FILE *fp_rd = stdin;
103 else if (fp_rd == stdin)
131 /* set stdin/stdout to binary, we're reading the PNM always! in binary format */
132 if (fp_rd == stdin)
134 setmode (STDIN, O_BINARY);
  /external/valgrind/tsan/
ts_offline.cc 362 ReadEventsFromFile(stdin, ReadOneBinEventFromFile);
370 DecodeEventsFromFile(stdin, output);
372 ReadEventsFromFile(stdin, ReadOneStrEventFromFile);
  /external/webkit/Tools/DumpRenderTree/chromium/
ImageDiff.cpp 54 // Causes the app to remain open, waiting for pairs of filenames on stdin.
56 static const char optionPollStdin[] = "--use-stdin";
84 // Creates the image from stdin with the given data length. On success, it
92 if (fread(source.get(), 1, byteLength, stdin) != byteLength)
193 " ImageDiff --use-stdin\n"
194 " Stays open reading pairs of filenames from stdin, comparing them,\n"
202 " Reads stream input from stdin, should be EXACTLY of the format\n"
244 while (fgets(buffer, sizeof(buffer), stdin)) {
375 // Watch stdin for filenames.
380 while (fgets(stdinBuffer, bufferSize, stdin)) {
    [all...]
  /external/zlib/
minigzip.c 394 SET_BINARY_MODE(stdin);
397 file = gzdopen(fileno(stdin), "rb");
398 if (file == NULL) error("can't gzdopen stdin");
403 gz_compress(stdin, file);
  /external/bluetooth/glib/tests/
unicode-collate.c 88 in = g_io_channel_unix_new (fileno (stdin));
  /external/dropbear/
cli-authinteract.c 49 ret = fgets(buf, sizeof(buf), stdin);
  /external/grub/util/
mbchk.c 239 if (! check_multiboot ("<stdin>", stdin))
  /external/gtest/test/
gtest_output_test.py 151 stdin_string: The string to be fed to the STDIN of the sub-process;
152 If None, the sub-process will inherit the STDIN
164 # If the caller didn't specify a string for STDIN, gets it from the
167 stdin_string = sys.stdin.read()
169 # Feeds the STDIN string to the sub-process.
190 stdin_string: The string to be fed to the STDIN of the sub-process;
191 If None, the sub-process will inherit the STDIN
  /external/openssl/apps/
nseq.c 114 } else in = BIO_new_fp(stdin, BIO_NOCLOSE);

Completed in 1268 milliseconds

1 2 3 45 6 7 8 91011>>