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

/macosx-10.10/autofs-246/automount/
H A Dautomount.c213 FTSENT *ftsent; local
224 while ((ftsent = fts_read(fts)) != NULL) {
237 if (ftsent->fts_info == FTS_DP &&
238 ftsent->fts_level > FTS_ROOTLEVEL)
239 rmdir(ftsent->fts_accpath);
/macosx-10.10/copyfile-118.1.2/
H A Dcopyfile.c590 FTSENT *ftsent; local
707 while ((ftsent = fts_read(fts)) != NULL) {
719 asprintf(&dstfile, "%s%s%s", dst, dstpathsep, ftsent->fts_path + offset);
726 switch (ftsent->fts_info) {
745 errno = ftsent->fts_errno;
747 rv = (*status)(COPYFILE_RECURSE_ERROR, COPYFILE_ERR, tstate, ftsent->fts_path, dstfile, s->ctx);
767 rv = (*status)(cmd, COPYFILE_START, tstate, ftsent->fts_path, dstfile, s->ctx);
770 rv = fts_set(fts, ftsent, FTS_SKIP);
772 rv = (*status)(0, COPYFILE_ERR, tstate, ftsent->fts_path, dstfile, s->ctx);
785 rv = copyfile(ftsent
[all...]

Completed in 71 milliseconds