Lines Matching defs:info

1541  * want to add some user data to tasks in the future (i.e. bsd info,
1744 task_absolutetime_info_t info;
1752 info = (task_absolutetime_info_t)task_info_out;
1753 info->threads_user = info->threads_system = 0;
1756 info->total_user = task->total_user_time;
1757 info->total_system = task->total_system_time;
1767 info->threads_user += tval;
1768 info->total_user += tval;
1772 info->threads_system += tval;
1773 info->total_system += tval;
1776 info->threads_user += tval;
1777 info->total_user += tval;
1791 task_dyld_info_t info;
1807 info = (task_dyld_info_t)task_info_out;
1808 info->all_image_info_addr = task->all_image_info_addr;
1809 info->all_image_info_size = task->all_image_info_size;
1813 info->all_image_info_format = task_has_64BitAddr(task) ?
1825 task_extmod_info_t info;
1833 info = (task_extmod_info_t)task_info_out;
1837 proc_getexecutableuuid(p, info->task_uuid, sizeof(info->task_uuid));
1839 bzero(info->task_uuid, sizeof(info->task_uuid));
1841 info->extmod_statistics = task->extmod_statistics;
1867 * info for the kernel task, gather from everywhere.
2063 task_power_info_t info;
2072 info = (task_power_info_t)task_info_out;
2075 (ledger_amount_t *)&info->task_interrupt_wakeups, &tmp);
2077 (ledger_amount_t *)&info->task_platform_idle_wakeups, &tmp);
2079 info->task_timer_wakeups_bin_1 = task->task_timer_wakeups_bin_1;
2080 info->task_timer_wakeups_bin_2 = task->task_timer_wakeups_bin_2;
2082 info->total_user = task->total_user_time;
2083 info->total_system = task->total_system_time;
2094 info->task_timer_wakeups_bin_1 += thread->thread_timer_wakeups_bin_1;
2095 info->task_timer_wakeups_bin_2 += thread->thread_timer_wakeups_bin_2;
2098 info->total_user += tval;
2102 info->total_system += tval;
2105 info->total_user += tval;