HomeSort by relevance Sort by last modified time
    Searched refs:stdin (Results 1 - 25 of 1578) 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/python/cpython3/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);
  /external/python/cpython3/Lib/test/subprocessdata/
input_reader.py 6 for line in sys.stdin:
qcat.py 6 for line in sys.stdin:
qgrep.py 8 for line in sys.stdin:
  /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);
  /external/libxkbcommon/xkbcommon/test/
filecomp.c 56 fclose(stdin);
58 assert(!xkb_keymap_new_from_file(ctx, stdin, 0, 0));
59 assert(!xkb_keymap_new_from_file(ctx, stdin, XKB_KEYMAP_USE_ORIGINAL_FORMAT, 0));
60 assert(!xkb_keymap_new_from_file(ctx, stdin, 1234, 0));
61 assert(!xkb_keymap_new_from_file(ctx, stdin, XKB_KEYMAP_FORMAT_TEXT_V1, -1));
62 assert(!xkb_keymap_new_from_file(ctx, stdin, XKB_KEYMAP_FORMAT_TEXT_V1, 1234));
  /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/skia/tools/skqp/
inflate.py 7 sys.stdout.write(zlib.decompress(sys.stdin.read()))
  /external/skqp/tools/skqp/
inflate.py 7 sys.stdout.write(zlib.decompress(sys.stdin.read()))
  /external/curl/src/
tool_main.h 32 # define STDIN_FILENO fileno(stdin)
  /external/syslinux/com32/samples/
fancyhello.c 36 fgets(buffer, sizeof buffer, stdin);
  /external/python/cpython3/Lib/test/
memory_watchdog.py 3 # stdin should refer to the process' /proc/<PID>/statm: we don't pass the
22 sys.stdin.seek(0)
23 statm = sys.stdin.read()
  /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:

Completed in 854 milliseconds

1 2 3 4 5 6 7 8 91011>>