Home | History | Annotate | Download | only in doc

Lines Matching defs:Dirs

16 // Dirs is a structure for scanning the directory tree.
20 type Dirs struct {
26 var dirs Dirs
29 dirs.paths = make([]string, 0, 1000)
30 dirs.scan = make(chan string)
31 go dirs.walk()
35 func (d *Dirs) Reset() {
41 func (d *Dirs) Next() (string, bool) {
57 func (d *Dirs) walk() {
67 func (d *Dirs) bfsWalkRoot(root string) {