Home
last modified time | relevance | path

Searched refs:active_count (Results 1 – 13 of 13) sorted by relevance

/xnu-11215/osfmk/kern/
H A Dthread_call.c87 uint32_t idle_count, active_count, blocked_count; member
426 group->active_count, group->blocked_count, group->idle_count); in thread_call_group_should_add_thread()
430 if (group->pending_count > 0 && group->active_count == 0) { in thread_call_group_should_add_thread()
442 uint32_t thread_count = group->active_count; in thread_call_group_should_add_thread()
1488 if (group_isparallel(group) || group->active_count == 0) { in thread_call_wake()
1497 group->active_count++; in thread_call_wake()
1539 assert(group->active_count); in sched_call_thread()
1540 --group->active_count; in sched_call_thread()
1550 group->active_count++; in sched_call_thread()
1827 group->active_count--; in thread_call_thread()
[all …]
H A Dcoalition.c1403 assert(coal->active_count == 0); in coalition_retire()
1493 coal->active_count++; in coalition_find_and_activate_by_id()
1497 uint32_t ac = coal->active_count; in coalition_find_and_activate_by_id()
1895 assert(coal->active_count > 0); in coalition_remove_active()
1897 coal->active_count--; in coalition_remove_active()
1902 if (coal->termrequested && coal->active_count == 0) { in coalition_remove_active()
1925 int ac = coal->active_count; in coalition_remove_active()
1988 coal->active_count++; in coalition_adopt_task_internal()
2034 int ac = coal->active_count; in coalition_remove_task_internal()
2191 if (coal->active_count == 0) { in coalition_request_terminate_internal()
[all …]
H A Dhost.c444 stat32->active_count = VM_STATISTICS_TRUNCATE_TO_32_BIT(vm_page_active_count); in host_statistics()
448 stat32->active_count += VM_STATISTICS_TRUNCATE_TO_32_BIT(lq->vpl_count); in host_statistics()
801 stat->active_count = vm_page_active_count; in vm_stats()
807 stat->active_count += lq->vpl_count; in vm_stats()
H A Dtask.c6332 size_t active_count, in task_dyld_process_info_update_helper() argument
6341 if (active_count == 0) { in task_dyld_process_info_update_helper()
6397 uint32_t release_count = 0, active_count = 0; in task_dyld_process_info_notify_register() local
6464 active_count++; in task_dyld_process_info_notify_register()
6480 active_count++; in task_dyld_process_info_notify_register()
6487 assert(active_count > 0); in task_dyld_process_info_notify_register()
6489 task_dyld_process_info_update_helper(task, active_count, in task_dyld_process_info_notify_register()
6532 uint32_t release_count = 0, active_count = 0; in task_dyld_process_info_notify_deregister() local
6598 active_count++; in task_dyld_process_info_notify_deregister()
6602 task_dyld_process_info_update_helper(task, active_count, in task_dyld_process_info_notify_deregister()
H A Dtask.h707 size_t active_count,
/xnu-11215/osfmk/ipc/
H A Dmach_kernelrpc.c619 uint32_t copyout_count = 0, release_count = 0, active_count = 0; in task_dyld_process_info_notify_get_trap() local
677 copyout_ports[active_count++] = sright; /* donates */ in task_dyld_process_info_notify_get_trap()
686 task_dyld_process_info_update_helper(current_task(), active_count, in task_dyld_process_info_notify_get_trap()
690 for (int i = 0; i < active_count; i++) { in task_dyld_process_info_notify_get_trap()
713 assert(copyout_count <= active_count); in task_dyld_process_info_notify_get_trap()
/xnu-11215/osfmk/mach/
H A Dvm_statistics.h90 natural_t active_count; /* # of pages active */ member
138 natural_t active_count; /* # of pages active */ member
/xnu-11215/bsd/netinet/
H A Dtcp_timer.c2147 uint32_t active_count = 0; in tcp_run_timerlist() local
2212 active_count++; in tcp_run_timerlist()
/xnu-11215/tools/lldbmacros/
H A Dmemory.py4868 active_count = 0
4906 active_count = active_count + 1
4948 print("active_count = {:d}\n".format(active_count))
H A Dprocess.py654 …format_string.format(coal, type_string, coal.id, coal.ref_count, coal.active_count, coal.focal_tas…
/xnu-11215/bsd/net/
H A Dnetwork_agent.c58 SYSCTL_INT(_net_netagent, OID_AUTO, active_count, CTLFLAG_RD | CTLFLAG_LOCKED,
H A Dcontent_filter.c764 SYSCTL_UINT(_net_cfil, OID_AUTO, active_count, CTLFLAG_RD | CTLFLAG_LOCKED,
/xnu-11215/bsd/kern/
H A Dkern_memorystatus.c5468 snapshot->stats.active_pages = vm_stat.active_count; in memorystatus_init_snapshot_vmstats()