Lines Matching defs:depth
33 * int ftw (path, fn, depth) char *path; int (*fn)(); int depth;
73 * The third argument to ftw does not limit the depth to which
74 * ftw will go. Rather, it limits the depth to which ftw will
114 int depth)
121 rc = (lf_xftw(path, fn, depth, lstat64));
132 int depth,
135 lf_xftw(char *path, int (*fn)(), int depth, int (*statfn)())
179 rc = lf_xftw(".", fn, depth-1, statfn);
208 rc = lf_xftw(".", fn, depth-1, statfn);
250 * If we are about to exceed our depth,
253 if (depth <= 1) {
262 rc = lf_xftw(subpath, fn, depth-1, statfn);
265 if (depth > 1)
273 if (depth <= 1) {