/src/lib/libc/compat/include/ |
fts.h | 40 FTS *fts_open(char * const *, int,
|
/src/lib/libc/compat/gen/ |
compat___fts50.c | 31 #undef fts_open 32 #define fts_open __fts_open50 macro
|
compat___fts31.c | 51 #undef fts_open 52 #define fts_open __fts_open31 macro
|
compat___fts32.c | 32 #undef fts_open 33 #define fts_open __fts_open32 macro
|
compat___fts13.c | 53 #undef fts_open 54 #define fts_open __fts_open13 macro
|
compat___fts30.c | 52 #undef fts_open 53 #define fts_open __fts_open30 macro
|
compat_fts.c | 40 __weak_alias(fts_open,_fts_open) 51 __warn_references(fts_open, 52 "warning: reference to compatibility fts_open();"
|
/src/lib/libc/gen/ |
ftw.c | 53 ftsp = fts_open(paths, FTS_COMFOLLOW | FTS_NOCHDIR, NULL);
|
nftw.c | 63 ftsp = fts_open(paths, ftsflags, NULL);
|
devname.c | 115 if ((ftsp = fts_open(dirs, FTS_NOCHDIR | FTS_PHYSICAL, NULL)) == NULL)
|
/src/include/ |
fts.h | 83 int fts_options; /* fts_open options, global flags */ 144 FTS *fts_open(char * const *, int,
|
/src/tests/lib/libc/gen/ |
t_getcwd.c | 96 fts = fts_open(argv, ops, NULL);
|
/src/usr.bin/chflags/ |
chflags.c | 134 if ((ftsp = fts_open(++argv, fts_options, NULL)) == NULL) 135 err(1, "fts_open");
|
/src/usr.bin/find/ |
find.c | 210 if (!(tree = fts_open(paths, ftsoptions, issort ? ftscompare : NULL)))
|
/src/bin/chmod/ |
chmod.c | 183 if ((ftsp = fts_open(argv, fts_options, 0)) == NULL) { 184 err(EXIT_FAILURE, "fts_open");
|
/src/usr.bin/du/ |
du.c | 194 if ((fts = fts_open(argv, ftsoptions, NULL)) == NULL) 195 err(1, "fts_open `%s'", *argv);
|
/src/usr.bin/cvslatest/ |
cvslatest.c | 181 dh = fts_open(pathv, FTS_PHYSICAL, NULL); 183 err(EXIT_FAILURE, "fts_open `%s'", pathv[0]);
|
/src/sbin/chown/ |
chown.c | 192 if ((ftsp = fts_open(argv, fts_options, NULL)) == NULL) 193 err(EXIT_FAILURE, "fts_open");
|
/src/usr.sbin/dev_mkdb/ |
dev_mkdb.c | 214 ftsp = fts_open(pathv, FTS_NOCHDIR | FTS_PHYSICAL, NULL); 216 err(1, "fts_open: %s", pathv[0]);
|
/src/usr.sbin/mtree/ |
verify.c | 89 if ((t = fts_open(argv, ftsoptions, dcmp)) == NULL) 90 mtree_err("fts_open: %s", strerror(errno));
|
/src/tests/lib/libc/sys/ |
t_stat.c | 107 fts = fts_open(argv, ops, NULL);
|
/src/bin/cp/ |
cp.c | 336 if ((ftsp = fts_open(argv, fts_options, NULL)) == NULL)
|
/src/bin/rm/ |
rm.c | 184 if ((fts = fts_open(argv, flags, NULL)) == NULL) 185 err(1, "fts_open failed");
|
/src/bin/setfacl/ |
setfacl.c | 126 /* fts_open() requires the last array element to be NULL. */ 505 if ((ftsp = fts_open(files_list, fts_options | FTS_NOSTAT, 0)) == NULL) 506 err(1, "fts_open");
|
/src/usr.bin/grep/ |
util.c | 137 if (!(fts = fts_open(argv, fts_flags, NULL))) 138 err(2, "fts_open");
|