/external/webrtc/webrtc/test/ |
run_loop.cc | 19 while (getc(stdin) != '\n' && !feof(stdin));
|
/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/curl/src/ |
tool_main.h | 32 # define STDIN_FILENO fileno(stdin)
|
/ndk/sources/android/support/src/musl-stdio/ |
vwscanf.c | 8 return vfwscanf(stdin, fmt, ap);
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/ |
interactive.py | 42 oldtty = termios.tcgetattr(sys.stdin) 44 tty.setraw(sys.stdin.fileno()) 45 tty.setcbreak(sys.stdin.fileno()) 49 r, w, e = select.select([chan, sys.stdin], [], []) 60 if sys.stdin in r: 61 x = sys.stdin.read(1) 67 termios.tcsetattr(sys.stdin, termios.TCSADRAIN, oldtty) 91 d = sys.stdin.read(1)
|
/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...] |
/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))
|
/build/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]);
|
/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)
|
/external/elfutils/tests/ |
run-addr2line-test.sh | 21 tempfiles good.out stdin.nl stdin.nl.out stdin.nonl stdin.nonl.out foo.out 46 cat > stdin.nl <<\EOF 57 echo "# Everything from stdin (with newlines)." 58 cat stdin.nl | testrun ${abs_top_builddir}/src/addr2line -f -e testfile > stdin.nl.out || exit 1 59 cmp good.out stdin.nl.out || exit 1 66 echo "# stdin without newline address, just EOF. [all...] |
/external/curl/tests/server/ |
testpart.c | 42 rc = getpart(&part, &partlen, argv[1], argv[2], stdin);
|
/frameworks/native/opengl/tools/glgen/ |
convert_to_java.py | 19 # the code generator. Provide input with stdin and receive output on stdout. 26 for line in sys.stdin:
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/android/ |
scrape_gtest_log.py | 22 blob = sys.stdin.read()
|