Searched refs:tinfo (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/osfmk/kern/
H A Dbsd_kern.c563 task_absolutetime_info_data_t tinfo; local
581 tinfo.threads_user = tinfo.threads_system = 0;
582 tinfo.total_user = task->total_user_time;
583 tinfo.total_system = task->total_system_time;
596 tinfo.threads_user += tval;
597 tinfo.total_user += tval;
602 tinfo.threads_system += tval;
603 tinfo.total_system += tval;
606 tinfo
[all...]
H A Dhost.c447 task_power_info_t tinfo = (task_power_info_t)info; local
449 tinfo->task_interrupt_wakeups = dead_task_statistics.task_interrupt_wakeups;
450 tinfo->task_platform_idle_wakeups = dead_task_statistics.task_platform_idle_wakeups;
452 tinfo->task_timer_wakeups_bin_1 = dead_task_statistics.task_timer_wakeups_bin_1;
453 tinfo->task_timer_wakeups_bin_2 = dead_task_statistics.task_timer_wakeups_bin_2;
455 tinfo->total_user = dead_task_statistics.total_user_time;
456 tinfo->total_system = dead_task_statistics.total_system_time;
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_resource.c712 task_absolutetime_info_data_t tinfo; local
720 (task_info_t)&tinfo, &count);
721 absolutetime_to_microtime(tinfo.total_user + tinfo.total_system,
953 mach_task_basic_info_data_t tinfo; local
962 (task_info_t)&tinfo, &task_info_count);
963 ut.tv_sec = tinfo.user_time.seconds;
964 ut.tv_usec = tinfo.user_time.microseconds;
965 st.tv_sec = tinfo.system_time.seconds;
966 st.tv_usec = tinfo
[all...]
H A Dkern_exit.c1872 mach_task_basic_info_data_t tinfo; local
1879 &tinfo, &task_info_stuff);
1880 p->p_ru->ru_utime.tv_sec = tinfo.user_time.seconds;
1881 p->p_ru->ru_utime.tv_usec = tinfo.user_time.microseconds;
1882 p->p_ru->ru_stime.tv_sec = tinfo.system_time.seconds;
1883 p->p_ru->ru_stime.tv_usec = tinfo.system_time.microseconds;
/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_subr.c4484 struct vnode_trigger_param *tinfo = NULL; local
4496 tinfo = (struct vnode_trigger_param *)data;
4500 (tinfo->vnt_resolve_func == NULL) ||
4501 (tinfo->vnt_flags & ~VNT_VALID_MASK)) {
4551 if ((vp->v_type == VDIR) && (tinfo != NULL)) {
4560 error = vnode_resolver_create(param->vnfs_mp, vp, tinfo, FALSE);
8238 vnode_resolver_create(mount_t mp, vnode_t vp, struct vnode_trigger_param *tinfo, boolean_t external) argument
8246 if (tinfo->vnt_data)
8247 byte = *((char *)tinfo->vnt_data);
8255 rp->vr_resolve_func = tinfo
[all...]

Completed in 54 milliseconds