Searched refs:fts (Results 1 - 2 of 2) sorted by relevance

/system/core/toolbox/
H A Drestorecon.c7 #include <fts.h>
100 FTS *fts; local
102 fts = fts_open(argv, ftsflags, NULL);
103 if (!fts) {
108 while ((ftsent = fts_read(fts))) {
117 fts_set(fts, ftsent, FTS_SKIP);
121 fts_set(fts, ftsent, FTS_SKIP);
/system/vold/
H A DVolumeManager.cpp22 #include <fts.h>
548 FTS *fts = fts_open(paths, FTS_PHYSICAL | FTS_NOCHDIR | FTS_XDEV, NULL); local
549 if (fts) {
551 for (FTSENT *ftsent = fts_read(fts); ftsent != NULL; ftsent = fts_read(fts)) {
580 fts_close(fts);

Completed in 50 milliseconds