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

1 2 3 4 5 6 7 8 91011

  /external/clang/test/Analysis/
global-region-invalidation.c 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.c 92 fscanf(stdin, "%s %d", s, &t);
102 // Test fscanf and fopen.
105 fscanf(fp, "%s%d", s, &t); // expected-warning + {{tainted}}
113 fscanf(stdin, "%d", &i);
121 fscanf(pp, "%d", &ii);
124 fscanf(p, "%d", &ii);
131 fscanf(p, "%d", &ii);
138 fscanf(*ppp, "%d", &iii);
146 fscanf(stdin, "%d", &i);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fscanf.c 1 /* $OpenBSD: fscanf.c,v 1.10 2011/05/30 18:48:33 martynas Exp $ */
39 fscanf(FILE *fp, const char *fmt, ...) function
  /ndk/sources/android/support/src/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
  /hardware/akm/AK8975_FS/akmdfs/
AKFS_FileIO.c 58 if (fscanf(fp, AKFS_SCANF_FORMAT, buf, &prms->mfv_ho.u.x) != 2) {
65 if (fscanf(fp, AKFS_SCANF_FORMAT, buf, &prms->mfv_ho.u.y) != 2) {
72 if (fscanf(fp, AKFS_SCANF_FORMAT, buf, &prms->mfv_ho.u.z) != 2) {
  /bootable/recovery/
verifier.cpp 347 if (fscanf(f, " %c", &start_char) != 1) goto exit;
356 if (fscanf(f, "%d {", &version) != 1) goto exit;
388 if (fscanf(f, " %i , 0x%x , { %u",
397 if (fscanf(f, " , %u", &(key->n[i])) != 1) goto exit;
399 if (fscanf(f, " } , { %u", &(key->rr[0])) != 1) goto exit;
401 if (fscanf(f, " , %u", &(key->rr[i])) != 1) goto exit;
403 fscanf(f, " } } ");
412 if (fscanf(f, " %i , { %u", &key_len, &byte) != 2) goto exit;
419 if (fscanf(f, " , %u", &byte) != 1) goto exit;
422 if (fscanf(f, " } , { %u", &byte) != 1) goto exit
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
sysfs.c 52 fscanf(fp, "%*s %" STR(PATH_MAX) "s %99s %*s %*d %*d\n",
  /external/oprofile/libutil/
op_lockfile.c 31 if (fscanf(fp, "%d", &value) != 1) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-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.11-4.8/sysroot/usr/include/bits/
stdio-ldbl.h 34 __LDBL_REDIR1_DECL (fscanf, __nldbl___isoc99_fscanf)
38 __LDBL_REDIR_DECL (fscanf)
  /external/chromium_org/tools/android/ps_ext/
ps_ext.c 30 fscanf(f, "%f", &uptime_secs);
140 fscanf(f, "%*d %s %*c %*d %*d %*d %*d %*d %*u %lu %*u %lu %*u %lu %lu "
  /ndk/sources/cxx-stl/gabi++/include/
cstdio 59 using ::fscanf;
  /ndk/sources/cxx-stl/system/include/
cstdio 59 using ::fscanf;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cstdio 57 using ::fscanf;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cstdio 57 using ::fscanf;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cstdio 59 using ::fscanf;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cstdio 59 using ::fscanf;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cstdio 59 using ::fscanf;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cstdio 59 using ::fscanf;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cstdio 59 using ::fscanf;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cstdio 59 using ::fscanf;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cstdio 59 using ::fscanf;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cstdio 59 using ::fscanf;
  /prebuilts/ndk/9/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) {

Completed in 2992 milliseconds

1 2 3 4 5 6 7 8 91011