Lines Matching refs:arcp
300 arctype *arcp; in printparents() local
314 for ( arcp = childp -> parents ; arcp ; arcp = arcp -> arc_parentlist ) { in printparents()
315 parentp = arcp -> arc_parentp; in printparents()
316 if ( childp == parentp || ( arcp -> arc_flags & DEADARC ) || in printparents()
323 arcp -> arc_count , "" ); in printparents()
332 arcp -> arc_time / hz , arcp -> arc_childtime / hz , in printparents()
333 arcp -> arc_count , cycleheadp -> npropcall ); in printparents()
344 arctype *arcp; in printchildren() local
347 arcp = parentp -> children; in printchildren()
348 for ( arcp = parentp -> children ; arcp ; arcp = arcp -> arc_childlist ) { in printchildren()
349 childp = arcp -> arc_childp; in printchildren()
350 if ( childp == parentp || ( arcp -> arc_flags & DEADARC ) || in printchildren()
356 "" , "" , "" , "" , arcp -> arc_count , "" ); in printchildren()
365 arcp -> arc_time / hz , arcp -> arc_childtime / hz , in printchildren()
366 arcp -> arc_count , childp -> cyclehead -> npropcall ); in printchildren()
403 arctype *arcp; in sortchildren() local
417 for ( (arcp = parentp -> children)&&(detachedp = arcp -> arc_childlist); in sortchildren()
418 arcp ; in sortchildren()
419 (arcp = detachedp)&&(detachedp = detachedp -> arc_childlist)) { in sortchildren()
427 if ( arccmp( arcp , prevp -> arc_childlist ) != LESSTHAN ) { in sortchildren()
431 arcp -> arc_childlist = prevp -> arc_childlist; in sortchildren()
432 prevp -> arc_childlist = arcp; in sortchildren()
443 arctype *arcp; in sortparents() local
457 for ( (arcp = childp -> parents)&&(detachedp = arcp -> arc_parentlist); in sortparents()
458 arcp ; in sortparents()
459 (arcp = detachedp)&&(detachedp = detachedp -> arc_parentlist)) { in sortparents()
467 if ( arccmp( arcp , prevp -> arc_parentlist ) != GREATERTHAN ) { in sortparents()
471 arcp -> arc_parentlist = prevp -> arc_parentlist; in sortparents()
472 prevp -> arc_parentlist = arcp; in sortparents()