Lines Matching defs:fts
29 /* In case we have a bad fts we include this before config.h because it
32 Also, include sys/types.h before fts. On some systems fts.h is not self
36 #include <fts.h>
54 /* If fts.h is included before config.h, its indirect inclusions may not
63 #include <fts.h>
399 FTS *fts = fts_open (modulesdir, FTS_NOSTAT | FTS_LOGICAL, NULL);
402 if (fts == NULL)
409 while ((f = fts_read (fts)) != NULL)
416 fts_set (fts, f, FTS_SKIP);
489 fts_close (fts);
669 FTS *fts = fts_open (dirs, FTS_NOSTAT | FTS_LOGICAL, NULL);
670 if (fts == NULL)
678 while ((f = fts_read (fts)) != NULL)
707 fts_close (fts);
803 FTS *fts = fts_open (modulesdir, FTS_NOSTAT | FTS_LOGICAL, NULL);
804 if (fts == NULL)
835 while ((f = fts_read (fts)) != NULL)
842 fts_set (fts, f, FTS_SKIP);
859 fts_close (fts);
885 fts_close (fts);