Searched refs:fts_cur (Results 1 – 2 of 2) sorted by relevance
202 if ((sp->fts_cur = fts_alloc(sp, "", 0)) == NULL) in fts_open()204 sp->fts_cur->fts_link = root; in fts_open()205 sp->fts_cur->fts_info = FTS_INIT; in fts_open()274 if (sp->fts_cur) { in fts_close()275 if (sp->fts_cur->fts_flags & FTS_SYMFOLLOW) in fts_close()276 (void)close(sp->fts_cur->fts_symfd); in fts_close()277 for (p = sp->fts_cur; p->fts_level >= FTS_ROOTLEVEL;) { in fts_close()345 if (sp->fts_cur == NULL || ISSET(FTS_STOP)) in fts_read()349 p = sp->fts_cur; in fts_read()443 assert(tmp == sp->fts_cur); in fts_read()[all …]
60 struct _ftsent *fts_cur; /* current node */ member