Searched refs:FTS_NOSTAT (Results 1 - 10 of 10) sorted by relevance

/freebsd-9.3-release/lib/libc/gen/
H A Dfts-compat.h55 #define FTS_NOSTAT 0x008 /* don't get stat info */ macro
H A Dfts-compat.c103 * The "FTS_NOSTAT" option can avoid a lot of calls to stat(2) if it
626 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
683 } else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
697 ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
914 sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp;
1051 if (ISSET(FTS_NOSTAT))
1059 if (ISSET(FTS_NOSTAT)) {
H A Dfts.c93 * The "FTS_NOSTAT" option can avoid a lot of calls to stat(2) if it
623 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
680 } else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
694 ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
893 sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp;
1030 if (ISSET(FTS_NOSTAT))
1038 if (ISSET(FTS_NOSTAT)) {
/freebsd-9.3-release/usr.bin/find/
H A Dfunction.c278 ftsoptions &= ~FTS_NOSTAT;
325 ftsoptions &= ~FTS_NOSTAT;
417 ftsoptions &= ~FTS_NOSTAT;
436 (ftsoptions & FTS_NOSTAT)) /* not stat()ing */
472 ftsoptions &= ~FTS_NOSTAT; /* no optimise */
576 ftsoptions &= ~FTS_NOSTAT;
682 ftsoptions &= ~FTS_NOSTAT;
805 ftsoptions &= ~FTS_NOSTAT;
912 ftsoptions &= ~FTS_NOSTAT;
959 ftsoptions &= ~FTS_NOSTAT;
[all...]
H A Dmain.c90 ftsoptions = FTS_NOSTAT | FTS_PHYSICAL;
/freebsd-9.3-release/include/
H A Dfts.h51 #define FTS_NOSTAT 0x008 /* don't get stat info */ macro
/freebsd-9.3-release/bin/ls/
H A Dls.c412 fts_options |= FTS_NOSTAT;
518 options & FTS_NOSTAT ? FTS_NAMEONLY : 0;
/freebsd-9.3-release/bin/rm/
H A Drm.c195 flags |= FTS_NOSTAT;
/freebsd-9.3-release/usr.bin/grep/
H A Dutil.c124 fts_flags |= FTS_NOSTAT | FTS_NOCHDIR;
/freebsd-9.3-release/usr.sbin/pkg_install/lib/
H A Dmatch.c101 ftsp = fts_open((char * const *)(uintptr_t)paths, FTS_LOGICAL | FTS_NOCHDIR | FTS_NOSTAT, fname_cmp);

Completed in 181 milliseconds