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

/xnu-2782.1.97/tools/lldbmacros/
H A Dipc.py210 tval = kern.GetValueFromAddress(cmd_args[0], 'task *')
211 if not tval:
215 pval = Cast(tval.bsd_info, 'proc *')
216 print GetTaskSummary(tval) + " " + GetProcSummary(pval)
218 print GetTaskIPCSummary(tval)
458 tval = kern.GetValueFromAddress(cmd_args[0], 'task *')
459 if not tval:
463 pval = Cast(tval.bsd_info, 'proc *')
464 print GetTaskSummary(tval) + " " + GetProcSummary(pval)
466 print GetIPCInformation(tval
[all...]
H A Dprocess.py468 tval = kern.GetValueFromAddress(cmd_args[0], 'task *')
469 if not tval:
471 task_list.append(tval)
473 for tval in task_list:
475 pval = Cast(tval.bsd_info, 'proc *')
476 print GetTaskSummary(tval) +" "+ GetProcSummary(pval)
517 tval = Cast(pval.task, 'task *')
518 print GetTaskSummary(tval) +" "+ GetProcSummary(pval)
810 for tval in task_list:
811 ShowTaskStacks(tval)
[all...]
H A Dmisc.py72 tval = ' {:#018x}: {:16d} {:16d} {:s}{:3d}.{:09d} ({:#018x})({:#018x},{:#018x})'
73 print tval.format(entry,
/xnu-2782.1.97/osfmk/kern/
H A Dbsd_kern.c663 uint64_t tval; local
675 tval = timer_grab(&thread->user_timer);
676 tinfo.threads_user += tval;
677 tinfo.total_user += tval;
679 tval = timer_grab(&thread->system_timer);
682 tinfo.threads_system += tval;
683 tinfo.total_system += tval;
686 tinfo.threads_user += tval;
687 tinfo.total_user += tval;
H A Dkern_stackshot.c478 uint64_t tval; local
499 tval = safe_grab_timer_value(&thread->user_timer);
500 tsnap->user_time = tval;
501 tval = safe_grab_timer_value(&thread->system_timer);
503 tsnap->system_time = tval;
505 tsnap->user_time += tval;
H A Dtask.c2690 uint64_t tval; local
2699 tval = timer_grab(&thread->user_timer);
2700 info->threads_user += tval;
2701 info->total_user += tval;
2703 tval = timer_grab(&thread->system_timer);
2705 info->threads_system += tval;
2706 info->total_system += tval;
2709 info->threads_user += tval;
2710 info->total_user += tval;
3193 uint64_t tval; local
[all...]
H A Dprocessor.c380 uint64_t tval = timer_grab(&PROCESSOR_DATA(processor, user_state)) + local
383 cpu_load_info->cpu_ticks[CPU_STATE_USER] = (uint32_t)(tval / hz_tick_interval);
H A Dtelemetry.c797 uint64_t tval = timer_grab(&thread->system_timer); local
800 thsnap->system_time = tval;
802 thsnap->user_time += tval;
/xnu-2782.1.97/bsd/net/
H A Dif_llreach.c222 iflr_reachable(struct if_llreach *lr, int cmp_delta, u_int64_t tval) argument
245 return ((expire >= now) && (now - tval) < lr->lr_reachable);
258 ifnet_llreach_reachable_delta(struct if_llreach *lr, u_int64_t tval) argument
263 return (iflr_reachable(lr, 1, tval));

Completed in 47 milliseconds