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

/xnu-2422.115.4/tools/lldbmacros/
H A Dipc.py201 tval = kern.GetValueFromAddress(cmd_args[0], 'task *')
202 if not tval:
206 pval = Cast(tval.bsd_info, 'proc *')
207 print GetTaskSummary(tval) + " " + GetProcSummary(pval)
209 print GetTaskIPCSummary(tval)
446 tval = kern.GetValueFromAddress(cmd_args[0], 'task *')
447 if not tval:
451 pval = Cast(tval.bsd_info, 'proc *')
452 print GetTaskSummary(tval) + " " + GetProcSummary(pval)
454 print GetIPCInformation(tval
[all...]
H A Dprocess.py292 tval = kern.GetValueFromAddress(cmd_args[0], 'task *')
293 if not tval:
295 task_list.append(tval)
297 for tval in task_list:
299 pval = Cast(tval.bsd_info, 'proc *')
300 print GetTaskSummary(tval) +" "+ GetProcSummary(pval)
341 tval = Cast(pval.task, 'task *')
342 print GetTaskSummary(tval) +" "+ GetProcSummary(pval)
591 for tval in task_list:
592 ShowTaskStacks(tval)
[all...]
H A Dmisc.py72 tval = ' {:#018x}: {:16d} {:16d} {:s}{:3d}.{:09d} ({:#018x})({:#018x},{:#018x})'
73 print tval.format(entry,
/xnu-2422.115.4/osfmk/kern/
H A Dbsd_kern.c622 uint64_t tval; local
634 tval = timer_grab(&thread->user_timer);
635 tinfo.threads_user += tval;
636 tinfo.total_user += tval;
638 tval = timer_grab(&thread->system_timer);
641 tinfo.threads_system += tval;
642 tinfo.total_system += tval;
645 tinfo.threads_user += tval;
646 tinfo.total_user += tval;
H A Dtask.c2343 uint64_t tval; local
2352 tval = timer_grab(&thread->user_timer);
2353 info->threads_user += tval;
2354 info->total_user += tval;
2356 tval = timer_grab(&thread->system_timer);
2358 info->threads_system += tval;
2359 info->total_system += tval;
2362 info->threads_user += tval;
2363 info->total_user += tval;
2787 uint64_t tval; local
[all...]
H A Dtelemetry.c636 uint64_t tval = timer_grab(&thread->system_timer); local
639 thsnap->system_time = tval;
641 thsnap->user_time += tval;
H A Dprocessor.c367 uint64_t tval = timer_grab(&PROCESSOR_DATA(processor, user_state)) + local
370 cpu_load_info->cpu_ticks[CPU_STATE_USER] = (uint32_t)(tval / hz_tick_interval);
/xnu-2422.115.4/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));
/xnu-2422.115.4/osfmk/kdp/
H A Dkdp.c1406 uint64_t tval; local
1427 tval = safe_grab_timer_value(&thread->user_timer);
1428 tsnap->user_time = tval;
1429 tval = safe_grab_timer_value(&thread->system_timer);
1431 tsnap->system_time = tval;
1433 tsnap->user_time += tval;

Completed in 84 milliseconds