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

/freebsd-11-stable/usr.sbin/ctm/ctm_dequeue/
H A Dctm_dequeue.c70 FTSENT *ftsent; local
98 ftsent = fts_read(fts);
99 if (ftsent == NULL || ftsent->fts_info != FTS_D)
105 ftsent = fts_children(fts, 0);
106 if (ftsent == NULL && errno)
112 for (chunk = 1; ftsent != NULL; ftsent = ftsent->fts_link)
117 if (ftsent
[all...]
/freebsd-11-stable/usr.sbin/setfmac/
H A Dsetfmac.c85 FTSENT *ftsent; local
145 while ((ftsent = fts_read(fts)) != NULL) {
146 switch (ftsent->fts_info) {
153 fts_set(fts, ftsent, FTS_SKIP);
159 if (apply_specs(specs, ftsent, hflag, vflag)) {
162 ftsent->fts_path);
166 ftsent->fts_path);
167 fts_set(fts, ftsent, FTS_SKIP);
173 err(1, "traversing %s", ftsent->fts_path);
176 ftsent
393 apply_specs(struct label_specs *specs, FTSENT *ftsent, int hflag, int vflag) argument
[all...]
/freebsd-11-stable/lib/libc/gen/
H A Dfts-compat.h126 #define fts_get_stream(ftsent) ((ftsent)->fts_fts)
/freebsd-11-stable/include/
H A Dfts.h128 #define fts_get_stream(ftsent) ((ftsent)->fts_fts)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc7637 void *ftsent = REAL(fts_read)(ftsp);
7638 if (ftsent)
7639 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, ftsent, struct_FTSENT_sz);
7640 return ftsent;
7648 void *ftsent = REAL(fts_children)(ftsp, options);
7649 if (ftsent)
7650 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, ftsent, struct_FTSENT_sz);
7651 return ftsent;

Completed in 127 milliseconds