Lines Matching refs:depth
397 func (c *fsCacheT) find(w evalWriter, fc findCommand, path string, id fileid, depth int, seen map[f…
398 glog.V(2).Infof("find: path:%s id:%v depth:%d", path, id, depth)
405 glog.V(3).Infof("find: path:%s ent:%s depth:%d", path, ent.name, depth)
428 if depth >= fc.depth {
429 glog.V(3).Infof("find: depth: %d >= %d", depth, fc.depth)
432 c.find(w, fc, filepathJoin(path, ent.name), ent.id, depth+1, seen)
442 depth int member
499 if 0 >= fc.depth {
500 glog.V(3).Infof("find: depth: 0 >= %d", fc.depth)
540 p.fc.depth = 1<<31 - 1 // max int32
752 p.fc.depth = int(i)
846 func (fc findleavesCommand) walk(w evalWriter, dir string, id fileid, depth int, seen map[fileid]st…
847 glog.V(3).Infof("findleaves walk: dir:%d id:%v depth:%d", dir, id, depth)
859 if depth < fc.mindepth {
860 glog.V(3).Infof("findleaves depth=%d mindepth=%d", depth, fc.mindepth)
880 fc.walk(w, filepathJoin(dir, subdir.name), subdir.id, depth+1, seen)