Lines Matching full:ftsent
619 for (FTSENT *ftsent = fts_read(fts); ftsent != NULL; ftsent = fts_read(fts)) {
621 if (!strcmp(ftsent->fts_name, "lost+found")) {
630 const bool privateFile = !strcmp(ftsent->fts_name, filename);
632 int fd = open(ftsent->fts_accpath, O_NOFOLLOW);
634 SLOGE("Couldn't open file %s: %s", ftsent->fts_accpath, strerror(errno));
641 if (ftsent->fts_info & FTS_D) {
643 } else if (ftsent->fts_info & FTS_F) {