HomeSort by relevance Sort by last modified time
    Searched refs:stdin (Results 1 - 25 of 1430) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/test/
run_loop.cc 19 while (getc(stdin) != '\n' && !feof(stdin));
  /external/python/cpython2/Doc/includes/
test.py 70 File "<stdin>", line 1, in ?
76 File "<stdin>", line 1, in ?
91 File "<stdin>", line 1, in ?
95 File "<stdin>", line 1, in ?
105 File "<stdin>", line 1, in ?
171 File "<stdin>", line 1, in ?
177 File "<stdin>", line 1, in ?
  /external/clang/test/Analysis/
redefined_system.c 9 char stdin();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
global-region-invalidation.c 26 // Test stdin does not get invalidated by a system call nor by an internal call.
30 fscanf(stdin, "%d", &i);
33 fscanf(stdin, "%d", &i);
42 fscanf(stdin, "%d", &i);
44 fscanf(stdin, "%d", &i); // errno gets invalidated here.
49 fscanf(stdin, "%d", &i); // errno gets invalidated here.
57 fscanf(stdin, "%d", &i);
taint-tester.cpp 6 extern FILE *stdin;
24 while ((read = T.getline(&line, &len, stdin)) != -1) {
  /external/v8/tools/sanitizers/
sanitize_pcs.py 10 for line in sys.stdin:
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
gets.c 46 FLOCKFILE(stdin);
50 FUNLOCKFILE(stdin);
57 FUNLOCKFILE(stdin);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
gets.c 64 FLOCKFILE(stdin);
68 FUNLOCKFILE(stdin);
78 FUNLOCKFILE(stdin);
getchar.c 59 FILE *fp = stdin;
71 return (__sgetc(stdin));
getwchar.c 48 return fgetwc(stdin);
  /external/curl/src/
tool_main.h 32 # define STDIN_FILENO fileno(stdin)
  /external/syslinux/com32/samples/
fancyhello.c 36 fgets(buffer, sizeof buffer, stdin);
  /prebuilts/ndk/r11/sources/android/support/src/musl-stdio/
vwscanf.c 8 return vfwscanf(stdin, fmt, ap);
  /prebuilts/ndk/r13/sources/android/support/src/musl-stdio/
vwscanf.c 8 return vfwscanf(stdin, fmt, ap);
  /external/selinux/libselinux/src/
query_user_context.c 24 fflush(stdin);
25 if (fgets(response, sizeof(response), stdin) == NULL)
27 fflush(stdin);
50 fflush(stdin);
51 if (fgets(response, sizeof(response), stdin) == NULL)
53 fflush(stdin);
84 fflush(stdin);
85 if (fgets(newfield, newfieldlen, stdin) == NULL)
87 fflush(stdin);
133 if (fgets(response, sizeof(response), stdin) == NUL
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pdb.py 19 self.real_stdin = sys.stdin
20 sys.stdin = _FakeInput(self.input)
23 sys.stdin = self.real_stdin
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
frozenmain.c 30 setbuf(stdin, (char *)NULL);
60 if (inspect && isatty((int)fileno(stdin)))
61 sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
  /external/nanopb-c/tests/basic_buffer/
decode_buffer.c 3 * Reads the encoded data from stdin and prints the values
68 SET_BINARY_MODE(stdin);
69 count = fread(buffer, 1, sizeof(buffer), stdin);
71 if (!feof(stdin))
  /external/python/cpython2/Python/
frozenmain.c 30 setbuf(stdin, (char *)NULL);
61 if (inspect && isatty((int)fileno(stdin)))
62 sts = PyRun_AnyFile(stdin, "<stdin>") != 0;
  /build/make/tools/
normalize_path.py 17 Normalize and output paths from arguments, or stdin if no arguments provided.
28 for line in sys.stdin:
  /external/libmtp/examples/
format.c 33 if ( fgets(buff, sizeof(buff), stdin) == NULL ) {
34 if (ferror(stdin)) {
35 fprintf(stderr, "File error on stdin\n");
37 fprintf(stderr, "EOF on stdin\n");
reset.c 33 if ( fgets(buff, sizeof(buff), stdin) == NULL ) {
34 if (ferror(stdin)) {
35 fprintf(stderr, "File error on stdin\n");
37 fprintf(stderr, "EOF on stdin\n");
  /external/llvm/utils/count/
count.c 32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin);
39 if (!feof(stdin)) {
40 fprintf(stderr, "%s: error reading stdin\n", argv[0]);
  /external/swiftshader/third_party/LLVM/utils/count/
count.c 32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin);
39 if (!feof(stdin)) {
40 fprintf(stderr, "%s: error reading stdin\n", argv[0]);
  /toolchain/binutils/binutils-2.25/binutils/
bin2c.c 46 fprintf (stream, "Prints bytes from stdin in hex format.\n");
50 SET_BINARY (fileno (stdin));
53 while ((c = getc (stdin)) != EOF)

Completed in 636 milliseconds

1 2 3 4 5 6 7 8 91011>>