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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
getchar.c 44 return (getc_unlocked(stdin));
57 return (getc(stdin));
getwchar.c 44 return fgetwc(stdin);
vscanf.c 40 return (vfscanf(stdin, fmt, ap));
gets.c 46 FLOCKFILE(stdin);
50 FUNLOCKFILE(stdin);
57 FUNLOCKFILE(stdin);
scanf.c 45 ret = vfscanf(stdin, fmt, ap);
vwscanf.c 37 return (vfwscanf(stdin, fmt, ap));
wscanf.c 40 r = vfwscanf(stdin, fmt, ap);
  /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/chromium_org/third_party/webrtc/test/
run_loop.cc 19 while (getchar() != '\n' && !feof(stdin));
  /ndk/sources/android/support/src/stdio/
vscanf.c 40 return (vfscanf(stdin, fmt, ap));
scanf.c 44 ret = vfscanf(stdin, fmt, ap);
  /external/lldb/test/functionalities/process_launch/
main.cpp 9 fgets (buffer, sizeof (buffer), stdin);
13 fgets (buffer, sizeof (buffer), stdin);
  /external/chromium_org/third_party/sqlite/src/tool/
vdbe-compress.tcl 48 while {![eof stdin]} {
49 set line [gets stdin]
60 while {![eof stdin]} {
61 set line [gets stdin]
65 while {![eof stdin]} {
66 set line [gets stdin]
102 } elseif {$line=="" && [eof stdin]} {
mkopts.tcl 9 while {![eof stdin]} {
10 set line [gets stdin]
  /external/lldb/test/functionalities/command_script/import/
main.c 10 while (fgets(line, sizeof(line), stdin)) { // Waiting to be attached...
  /external/lldb/test/python_api/hello_world/
main.c 10 while (fgets(line, sizeof(line), stdin)) { // Waiting to be attached...
  /external/lldb/test/python_api/process/io/
main.c 7 while (fgets(line, sizeof(line), stdin)) { // Reading from stdin...
  /ndk/sources/android/support/src/musl-stdio/
vwscanf.c 8 return vfwscanf(stdin, fmt, ap);
  /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/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/chromium_org/tools/traceline/traceline/scripts/
split.py 6 """Splits a single json file (read from stdin) into separate files of 40k
17 for l in sys.stdin:

Completed in 838 milliseconds

1 2 3 4 5 6 7 8 91011>>