Searched defs:walkflags (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/grep/
H A Dgrep.c236 int walkflags = FTW_CHDIR; local
259 walkflags |= FTW_PHYS;
261 if (nftw(path, recursive, MAX_DEPTH, walkflags) != 0) {
/illumos-gate/usr/src/cmd/grep_xpg4/
H A Dgrep.c393 int walkflags = FTW_CHDIR; local
416 walkflags |= FTW_PHYS;
418 if (nftw(path, recursive, MAX_DEPTH, walkflags) != 0) {
/illumos-gate/usr/src/cmd/find/
H A Dfind.c225 static int walkflags = FTW_CHDIR|FTW_PHYS|FTW_ANYERR|FTW_NOLOOP; variable
316 walkflags &= ~FTW_PHYS;
361 walkflags &= ~FTW_HOPTION;
363 walkflags |= FTW_HOPTION;
372 if ((errno == EACCES) && (walkflags & FTW_CHDIR)) {
378 walkflags &= ~FTW_CHDIR;
390 if (nftw(curpath, execute, 1000, walkflags)) {
526 walkflags &= ~FTW_PHYS;
529 walkflags |= FTW_MOUNT;
532 walkflags |
[all...]

Completed in 64 milliseconds