Home
last modified time | relevance | path

Searched refs:table_size (Results 1 – 7 of 7) sorted by relevance

/xnu-11215/osfmk/ipc/
H A Dmach_debug.c167 table_size = 0; in mach_port_space_info()
178 if (table_size != 0) { in mach_port_space_info()
180 table_addr, table_size); in mach_port_space_info()
201 if (table_size != 0) { in mach_port_space_info()
217 table_size = table_size_needed; in mach_port_space_info()
280 if (table_size > 0) { in mach_port_space_info()
293 if (keep < table_size) { in mach_port_space_info()
295 table_size - keep); in mach_port_space_info()
296 table_size = keep; in mach_port_space_info()
298 if (table_size > used) { in mach_port_space_info()
[all …]
/xnu-11215/tests/
H A Dproc_info_44873309.c27 table_info.table_size, table_info.table_free);
36 table_info2.table_size, table_info2.table_free);
/xnu-11215/bsd/sys/
H A Dbsdtask_info.h127 int fill_taskipctableinfo(task_t task, uint32_t *table_size, uint32_t *table_free);
H A Dproc_info_private.h82 uint32_t table_size; member
/xnu-11215/tools/lldbmacros/
H A Dipc.py76 _, table_size = GetSpaceTable(task.itk_space)
77 …out_string += format_string.format(task, GetProcPIDForTask(task), task.thread_count, table_size, p…
81 return (out_string, table_size, nbusy, nmsgs)
82 return (out_string, table_size)
1683 (summary, table_size, nbusy, nmsgs) = GetTaskBusyIPCSummary(tsk)
1684 ipc_table_size += table_size
1689 (summary, table_size, nbusy, nmsgs) = GetTaskBusyIPCSummary(tsk)
1690 ipc_table_size += table_size
/xnu-11215/osfmk/kern/
H A Dbsd_kern.c1408 fill_taskipctableinfo(task_t task, uint32_t *table_size, uint32_t *table_free) in fill_taskipctableinfo() argument
1421 *table_size = ipc_entry_table_count(is_active_table(space)); in fill_taskipctableinfo()
/xnu-11215/bsd/kern/
H A Dproc_info.c1575 error = fill_taskipctableinfo(task, &(table_info->table_size), &(table_info->table_free)); in proc_pidipctableinfo()