Searched refs:FTS_NOSTAT (Results 1 - 10 of 10) sorted by last modified time

/freebsd-10.0-release/include/
H A Dfts.h53 #define FTS_NOSTAT 0x008 /* don't get stat info */ macro
/freebsd-10.0-release/usr.bin/grep/
H A Dutil.c124 fts_flags |= FTS_NOSTAT | FTS_NOCHDIR;
/freebsd-10.0-release/usr.bin/find/
H A Dfunction.c278 ftsoptions &= ~FTS_NOSTAT;
325 ftsoptions &= ~FTS_NOSTAT;
418 ftsoptions &= ~FTS_NOSTAT;
437 (ftsoptions & FTS_NOSTAT)) /* not stat()ing */
474 ftsoptions &= ~FTS_NOSTAT; /* no optimise */
586 ftsoptions &= ~FTS_NOSTAT;
698 ftsoptions &= ~FTS_NOSTAT;
827 ftsoptions &= ~FTS_NOSTAT;
934 ftsoptions &= ~FTS_NOSTAT;
981 ftsoptions &= ~FTS_NOSTAT;
[all...]
H A Dmain.c90 ftsoptions = FTS_NOSTAT | FTS_PHYSICAL;
/freebsd-10.0-release/bin/ls/
H A Dls.c412 fts_options |= FTS_NOSTAT;
518 options & FTS_NOSTAT ? FTS_NAMEONLY : 0;
/freebsd-10.0-release/bin/rm/
H A Drm.c199 flags |= FTS_NOSTAT;
/freebsd-10.0-release/lib/libc/gen/
H A Dfts-compat.c105 * The "FTS_NOSTAT" option can avoid a lot of calls to stat(2) if it
628 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
685 } else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
699 ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
916 sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp;
1053 if (ISSET(FTS_NOSTAT))
1061 if (ISSET(FTS_NOSTAT)) {
H A Dfts-compat.h51 #define FTS_NOSTAT 0x008 /* don't get stat info */ macro
H A Dfts.c95 * The "FTS_NOSTAT" option can avoid a lot of calls to stat(2) if it
615 * The real slowdown in walking the tree is the stat calls. If FTS_NOSTAT is
670 } else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
684 ISSET(FTS_NOSTAT), ISSET(FTS_PHYSICAL), ISSET(FTS_SEEDOT));
880 sbp = ISSET(FTS_NOSTAT) ? &sb : p->fts_statp;
1011 if (ISSET(FTS_NOSTAT))
1019 if (ISSET(FTS_NOSTAT)) {
/freebsd-10.0-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 174 milliseconds