Home
last modified time | relevance | path

Searched refs:taskp (Results 1 – 3 of 3) sorted by relevance

/xnu-11215.81.4/osfmk/kern/
H A Dtask_ident.h67 kern_return_t task_id_token_port_name_to_task(mach_port_name_t name, task_t *taskp)
90 kern_return_t task_identity_token_get_task_grp(task_id_token_t token, task_t *taskp, task_grp_t grp…
94 kern_return_t task_id_token_port_name_to_task(mach_port_name_t name, task_t *taskp);
H A Dtask_ident.c169 task_t *taskp, in task_identity_token_get_task_grp() argument
195 *taskp = task; in task_identity_token_get_task_grp()
/xnu-11215.81.4/tools/lldbmacros/
H A Dprocess.py1849 for taskp in kern.tasks:
1850 for actp in IterateQueue(taskp.threads, 'struct thread *', 'task_threads'):
2333 taskp = Cast(head_taskp.next, 'task *')
2334 while taskp != head_taskp:
2335 out_str = "task = {:#x} pte = {:#x}\t".format(taskp, taskp.map.pmap.ttep)
2336 procp = GetProcFromTask(taskp)
2342 taskp = Cast(taskp.tasks.next, 'struct task *')
2354 taskp = Cast(head_taskp.next, 'task *')
2356 while taskp != head_taskp:
2357 out_str += "{: <#20x}".format(taskp)
[all …]