Lines Matching defs:pathMap
467 type pathMap struct { struct
468 mapNode
470 path string
472 children map[string]*pathMap
475 approximateNumDescendents int
485 func (m *pathMap) GetNode(path string, createIfNotFound bool) *pathMap {
520 func (m *pathMap) newChild(name string) (child *pathMap) {
528 func (m *pathMap) UpdateNumDescendents() int {
537 func (m *pathMap) UpdateNumDescendentsRecursive() {
544 func (m *pathMap) MergeIn(other *pathMap) {
559 func (m *pathMap) DumpAll() []dirFullInfo {
565 func (m *pathMap) dumpInto(path string, results *[]dirFullInfo) {