Lines Matching refs:child
34 struct child;
48 struct child *children;
56 typedef struct child { struct
57 PROC *child; member
58 struct child *next; argument
155 static void add_child(PROC *parent, PROC *child) in add_child() argument
162 new->child = child; in add_child()
164 cmp = strcmp((*walk)->child->comm, child->comm); in add_child()
167 if (cmp == 0 && (*walk)->child->uid > child->uid) in add_child()
213 if (!tree_equal(walk_a->child, walk_b->child)) in tree_equal()
309 if (!tree_equal(walk->child, (*scan)->child)) in dump_tree()
323 dump_tree(walk->child, level + 1, count + 1, in dump_tree()
344 dump_by_user(walk->child, uid); in dump_by_user()