Home | History | Annotate | Download | only in installboot

Lines Matching defs:fts

48 #include <fts.h>
500 * them into the array we feed to fts. This is because we always
829 FTS *fts;
839 fts = fts_open(paths, FTS_COMFOLLOW | FTS_LOGICAL | FTS_NOCHDIR, NULL);
840 if (fts == NULL ||
841 (chp = fts_children(fts, 0)) == NULL) {
843 if (fts != NULL)
844 fts_close(fts);
848 chp = fts_children(fts, 0);
850 while ((p = fts_read(fts)) != NULL) {
863 fts_close(fts);