Lines Matching defs:pathMap
474 type pathMap struct { struct
475 mapNode
477 path string
479 children map[string]*pathMap
482 approximateNumDescendents int
492 func (m *pathMap) GetNode(path string, createIfNotFound bool) *pathMap {
527 func (m *pathMap) newChild(name string) (child *pathMap) {
535 func (m *pathMap) UpdateNumDescendents() int {
544 func (m *pathMap) UpdateNumDescendentsRecursive() {
551 func (m *pathMap) MergeIn(other *pathMap) {
566 func (m *pathMap) DumpAll() []dirFullInfo {
572 func (m *pathMap) dumpInto(path string, results *[]dirFullInfo) {