HomeSort by relevance Sort by last modified time
    Searched refs:fts (Results 1 - 11 of 11) sorted by null

  /external/elfutils/src/libdwfl/
linux-kernel-modules.c 33 #include <fts.h>
345 FTS *fts = fts_open (modulesdir, FTS_NOSTAT | FTS_LOGICAL, NULL); local
348 if (fts == NULL)
355 while ((f = fts_read (fts)) != NULL)
362 fts_set (fts, f, FTS_SKIP);
426 fts_close (fts);
567 FTS *fts = fts_open (dirs, FTS_NOSTAT | FTS_LOGICAL, NULL);
568 if (fts == NULL
    [all...]
  /external/selinux/policycoreutils/setfiles/
restore.h 6 #include <fts.h>
42 int fts_flags; /* Flags to fts, e.g. follow links, follow mounts */
  /system/core/toolbox/upstream-netbsd/usr.bin/du/
du.c 56 #include <fts.h>
78 FTS *fts; local
156 * Because of the way that fts(3) works, logical walks will not count
194 if ((fts = fts_open(argv, ftsoptions, NULL)) == NULL)
197 for (rval = 0; (p = fts_read(fts)) != NULL;) {
207 fts_set(fts, p, FTS_SKIP);
  /bionic/libc/upstream-netbsd/lib/libc/gen/
ftw.c 33 #include <fts.h>
44 FTS *ftsp;
nftw.c 34 #include <fts.h>
46 FTS *ftsp;
  /system/core/toolbox/upstream-netbsd/usr.bin/grep/
util.c 46 #include <fts.h>
115 FTS *fts; local
137 if (!(fts = fts_open(argv, fts_flags, NULL)))
139 while ((p = fts_read(fts)) != NULL) {
179 fts_close(fts);
  /external/libselinux/src/
android.c 17 #include <fts.h>
1229 FTS *fts; local
    [all...]
  /system/vold/
VolumeManager.cpp 20 #include <fts.h>
1228 FTS *fts = fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL); local
    [all...]
  /system/extras/tests/sdcard/
sdcard_perf_test.cpp 40 #include <fts.h>
638 FTS *ftsp;
  /bionic/libc/bionic/
fts.c 1 /* $OpenBSD: fts.c,v 1.48 2014/11/20 04:14:15 guenther Exp $ */
38 #include <fts.h>
44 static FTSENT *fts_alloc(FTS *, char *, size_t);
45 static FTSENT *fts_build(FTS *, int);
47 static void fts_load(FTS *, FTSENT *);
49 static void fts_padjust(FTS *, FTSENT *);
50 static int fts_palloc(FTS *, size_t);
51 static FTSENT *fts_sort(FTS *, FTSENT *, int);
52 static u_short fts_stat(FTS *, FTSENT *, int, int);
53 static int fts_safe_changedir(FTS *, FTSENT *, int, char *)
    [all...]
  /bionic/libc/
Android.mk 45 bionic/fts.c \
    [all...]

Completed in 381 milliseconds