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

  /system/core/toolbox/
restorecon.c 7 #include <fts.h>
95 FTS *fts; local
97 fts = fts_open(argv, ftsflags, NULL);
98 if (!fts) {
103 while ((ftsent = fts_read(fts))) {
112 fts_set(fts, ftsent, FTS_SKIP);
116 fts_set(fts, ftsent, FTS_SKIP);
du.c 55 #include <fts.h>
74 FTS *fts; local
143 * Because of the way that fts(3) works, logical walks will not count
181 if ((fts = fts_open(argv, ftsoptions, NULL)) == NULL)
184 for (rval = 0; (p = fts_read(fts)) != NULL;) {
  /external/elfutils/libdwfl/
linux-kernel-modules.c 53 #include <fts.h>
287 FTS *fts = fts_open (modulesdir, FTS_NOSTAT | FTS_LOGICAL, NULL); local
290 if (fts == NULL)
297 while ((f = fts_read (fts)) != NULL)
360 fts_close (fts);
502 FTS *fts = fts_open (dirs, FTS_NOSTAT | FTS_LOGICAL, NULL);
503 if (fts == NULL)
511 while ((f = fts_read (fts)) != NULL
    [all...]
  /bionic/libc/upstream-netbsd/libc/gen/
ftw.c 33 #include <fts.h>
44 FTS *ftsp;
nftw.c 34 #include <fts.h>
46 FTS *ftsp;
  /system/core/toolbox/grep/
util.c 46 #include <fts.h>
114 FTS *fts; local
136 if (!(fts = fts_open(argv, fts_flags, NULL)))
138 while ((p = fts_read(fts)) != NULL) {
178 fts_close(fts);
  /system/vold/
VolumeManager.cpp 22 #include <fts.h>
585 FTS *fts = fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL); local
586 if (fts) {
588 for (FTSENT *ftsent = fts_read(fts); ftsent != NULL; ftsent = fts_read(fts)) {
617 fts_close(fts);
    [all...]
  /system/core/toolbox/cp/
cp.c 54 * current target file. Since fts(3) does not change directories,
57 * The basic algorithm is to initialize "to" and use fts(3) to traverse
71 #include <fts.h>
220 /* Set end of argument list for fts(3). */
331 FTS *ftsp;
utils.c 52 #include <fts.h>
  /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.43 2009/08/27 16:19:27 millert Exp $ */
38 #include <fts.h>
45 static FTSENT *fts_alloc(FTS *, char *, size_t);
46 static FTSENT *fts_build(FTS *, int);
48 static void fts_load(FTS *, FTSENT *);
50 static void fts_padjust(FTS *, FTSENT *);
51 static int fts_palloc(FTS *, size_t);
52 static FTSENT *fts_sort(FTS *, FTSENT *, int);
53 static u_short fts_stat(FTS *, FTSENT *, int);
54 static int fts_safe_changedir(FTS *, FTSENT *, int, char *)
    [all...]
  /bionic/libc/
Android.mk 139 bionic/fts.c \

Completed in 254 milliseconds