Lines Matching defs:pathparent
112 NODE *centry, *last, *pathparent, *cur;
182 pathparent = NULL;
200 pathparent = cur;
237 } else if (pathparent != NULL) {
241 centry->parent = pathparent;
242 addchild(pathparent, centry);
719 * Add the centry node as a child of the pathparent node. If
722 * pathparent->child. Keep the list sorted if Sflag is set.
725 addchild(NODE *pathparent, NODE *centry)
739 cur = pathparent->child;
741 /* centry is pathparent's first and only child node so far */
742 pathparent->child = centry;
747 * pathparent already has at least one other child, so add the
813 pathparent->child = centry->next;
824 pathparent->child->prev = centry;
825 centry->next = pathparent->child;
827 pathparent->child = centry;