Searched refs:allproc (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/xnu-2782.1.97/bsd/kern/
H A Dkern_shutdown.c477 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
498 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
536 for (p = allproc.lh_first; p; p = p->p_list.le_next) {
H A Dkern_proc.c146 struct proclist allproc; variable in typeref:struct:proclist
207 LIST_INIT(&allproc);
1108 * initialize its own child list, place it in the allproc list,
1136 LIST_INSERT_HEAD(&allproc, child, p_list);
2202 for (p = allproc.lh_first; (p != 0); p = p->p_list.le_next) {
2293 for (p = allproc.lh_first; (p != 0); p = p->p_list.le_next) {
2333 for (p = allproc.lh_first; (p != 0); p = p->p_list.le_next) {
2353 } /* allproc walk thru */
3291 for (p = allproc.lh_first; (p != 0); p = p->p_list.le_next) {
H A Dbsd_init.c507 LIST_INSERT_HEAD(&allproc, kernproc, p_list);
H A Dkdebug.c1523 for (p = allproc.lh_first, *mapcount=0, tts_count=0; p; p = p->p_list.le_next) {
1570 for (p = allproc.lh_first, i=0; p && i < tts_count; p = p->p_list.le_next) {
H A Dproc_info.c287 current_list = &allproc;
353 if ((n < numprocs) && (current_list == &allproc)) {
H A Dkern_resource.c229 for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) {
/macosx-10.10/xnu-2782.1.97/bsd/sys/
H A Dproc_internal.h499 #define PROC_ALLPROCLIST 1 /* walk the allproc list (procs not exited yet) */
689 extern struct proclist allproc; /* List of all processes. */
/macosx-10.10/xnu-2782.1.97/tools/lldbmacros/
H A Dprocess.py101 headp = kern.globals.allproc
107 @lldb_command('allproc')
109 """ Walk through the allproc structure and print procinfo for each process structure.
H A Dmemory.py1794 procptr = Cast(kern.globals.allproc.lh_first, 'proc *')

Completed in 99 milliseconds