/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));
|
/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...
|
/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:
|
/external/libvorbis/examples/ |
encoder_example.c | 18 /* takes a stereo 16bit 44.1kHz WAV file from stdin and encodes it into 30 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */ 62 /* this also lets the user set stdin and stdout */ 69 #ifdef _WIN32 /* We need to set stdin/stdout to binary mode. Damn windows. */ 74 _setmode( _fileno( stdin ), _O_BINARY ); 84 for (i=0, founddata=0; i<30 && ! feof(stdin) && ! ferror(stdin); i++) 86 fread(readbuffer,1,2,stdin); 90 fread(readbuffer,1,6,stdin); 182 long bytes=fread(readbuffer,1,READ*4,stdin); /* stereo hardwired here * [all...] |
chaining_example.c | 22 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */ 31 #ifdef _WIN32 /* We need to set stdin to binary mode. Damn windows. */ 34 _setmode( _fileno( stdin ), _O_BINARY ); 37 /* open the file/pipe on stdin */ 38 if(ov_open_callbacks(stdin,&ov,NULL,-1,OV_CALLBACKS_NOCLOSE)<0){
|
/external/chromium_org/third_party/libvpx/source/libvpx/tools/ |
wrap-commit-msg.py | 59 if fileobj == sys.stdin: 70 main(sys.stdin)
|