Searched refs:p_children (Results 1 - 4 of 4) sorted by relevance

/xnu-2782.1.97/bsd/kern/
H A Dkern_exit.c717 while ((q = p->p_children.lh_first) != NULL) {
1157 if ((deadparent != 0) && (LIST_EMPTY(&parent->p_children)))
1254 for (p = q->p_children.lh_first; p != 0; p = p->p_sibling.le_next) {
1497 for (p = q->p_children.lh_first; p != 0; p = p->p_sibling.le_next) {
1711 LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
1947 while ((q = p->p_children.lh_first) != NULL) {
H A Dkern_proc.c1107 * place it on the parents p_children list as a sibling,
1117 LIST_INIT(&child->p_children);
1134 LIST_INSERT_HEAD(&parent->p_children, child, p_sibling);
2388 for (p = parent->p_children.lh_first; (p != 0); p = p->p_sibling.le_next) {
/xnu-2782.1.97/tools/lldbmacros/
H A Dprocess.py1047 headp = kern.globals.initproc.p_children
1086 head_ptr = proc.p_children.lh_first
1088 for p in IterateListEntry(proc.p_children, 'struct proc *', 'p_sibling'):
/xnu-2782.1.97/bsd/sys/
H A Dproc_internal.h233 LIST_HEAD(, proc) p_children; /* Pointer to list of children. (LL)*/ member in struct:proc

Completed in 34 milliseconds