/external/clang/test/Analysis/ |
global-region-invalidation.c | 28 fscanf(stdin, "%d", &i); 31 fscanf(stdin, "%d", &i); 40 fscanf(stdin, "%d", &i); 42 fscanf(stdin, "%d", &i); // errno gets invalidated here. 52 fscanf(stdin, "%d", &i);
|
taint-tester.c | 94 int fscanf(FILE *restrict stream, const char *restrict format, ...); 105 fscanf(stdin, "%s %d", s, &t); 115 // Test fscanf and fopen. 118 fscanf(fp, "%s%d", s, &t); // expected-warning + {{tainted}} 126 fscanf(stdin, "%d", &i); 134 fscanf(pp, "%d", &ii); 137 fscanf(p, "%d", &ii); 144 fscanf(p, "%d", &ii); 151 fscanf(*ppp, "%d", &iii); 159 fscanf(stdin, "%d", &i) [all...] |
system-header-simulator.h | 13 int fscanf(FILE *restrict, const char *restrict, ...);
|
/bionic/libc/stdio/ |
fscanf.c | 1 /* $OpenBSD: fscanf.c,v 1.9 2005/10/10 17:37:44 espie Exp $ */ 38 fscanf(FILE *fp, const char *fmt, ...) function
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
stdio-ldbl.h | 34 __LDBL_REDIR1_DECL (fscanf, __nldbl___isoc99_fscanf) 38 __LDBL_REDIR_DECL (fscanf)
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
stdio-ldbl.h | 34 __LDBL_REDIR1_DECL (fscanf, __nldbl___isoc99_fscanf) 38 __LDBL_REDIR_DECL (fscanf)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
stdio-ldbl.h | 34 __LDBL_REDIR1_DECL (fscanf, __nldbl___isoc99_fscanf) 38 __LDBL_REDIR_DECL (fscanf)
|
/system/vold/ |
Xwarp.cpp | 54 fscanf(fp, "%d", (int *) ready); 61 fscanf(fp, "%u %u", mirrorPos, maxSize);
|
/external/oprofile/libutil/ |
op_lockfile.c | 31 if (fscanf(fp, "%d", &value) != 1) {
|
/bootable/recovery/ |
install.cpp | 209 if (fscanf(f, " { %i , 0x%x , { %u", 218 if (fscanf(f, " , %u", &(key->n[i])) != 1) goto exit; 220 if (fscanf(f, " } , { %u", &(key->rr[0])) != 1) goto exit; 222 if (fscanf(f, " , %u", &(key->rr[i])) != 1) goto exit; 224 fscanf(f, " } } ");
|
/bionic/libstdc++/include/ |
cstdio | 59 using ::fscanf;
|
/external/clang/test/Sema/ |
format-strings-scanf.c | 11 int fscanf(FILE * restrict, const char * restrict, ...) ; 66 fscanf(f, "%ld", i); // expected-warning{{format specifies type 'long *' but the argument has type 'int *'}}
|
/ndk/sources/cxx-stl/gabi++/include/ |
cstdio | 59 using ::fscanf;
|
/ndk/sources/cxx-stl/system/include/ |
cstdio | 59 using ::fscanf;
|
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/ |
cstdio | 57 using ::fscanf;
|
/prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/ |
cstdio | 57 using ::fscanf;
|
/prebuilts/ndk/android-ndk-r5/sources/cxx-stl/system/include/ |
cstdio | 59 using ::fscanf;
|
/prebuilts/ndk/android-ndk-r6/sources/cxx-stl/system/include/ |
cstdio | 59 using ::fscanf;
|
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gabi++/include/ |
cstdio | 59 using ::fscanf;
|
/prebuilts/ndk/android-ndk-r7/sources/cxx-stl/system/include/ |
cstdio | 59 using ::fscanf;
|
/external/blktrace/btt/ |
devmap.c | 74 while (fscanf(fp, "%255[a-zA-Z0-9 :.,/_-]\n", line) == 1) {
|
/external/iproute2/netem/ |
stats.c | 36 fscanf(fp, "%lf", &x[i]);
|
/external/qemu-pc-bios/bochs/bios/ |
usage.cc | 78 retval = fscanf(org_file, "0x%x\n", &org);
|
/external/valgrind/main/tests/ |
os_test.c | 38 if (fp == NULL || fscanf(fp, "%d.%d.%d", &a1, &a2, &a3) != 3) return False;
|
/system/core/libcutils/ |
android_reboot.c | 50 match = fscanf(f, "%255s %255s %255s %255s %d %d\n",
|