Darwin exposes the Darwin/BSD C system layer to Swift: POSIX APIs, Mach kernel interfaces, MacTypes, and core OS-level types and error codes. Use it for low-level systems work that talks directly to the operating system, from process identity with ProcessSerialNumber to Mach time and clock services backed by structures such as mach_timespec and the clock request and reply records. It also surfaces kernel introspection types, including IPC space and port information like ipc_info_space and ipc_info_port, virtual memory regions such as vm_info_region_64 and mach_vm_info_region, and allocator zone details like mach_zone_name and zone_info. The framework spans iOS, macOS, tvOS, watchOS, and visionOS.
Essentials 2
Core OS-level value types for process identity and time.
- StProcessSerialNumberProcess Manager type ProcessSerialNumber (previously in Processes.h)
- Stmach_timespecA Mach time value expressed as a number of seconds and nanoseconds.
Host Information 8
Structures that report the host machine's hardware, scheduling, and load characteristics.
- Sthost_basic_infoA structure reporting basic information about the host, such as CPU count and memory size.
- Sthost_sched_infoA structure reporting the host's scheduler timing parameters.
- Sthost_priority_infoA structure reporting the host's thread priority ranges.
- Sthost_load_infoA structure reporting the host's load and mach-factor averages.
- Sthost_cpu_load_infoA structure reporting aggregate CPU tick counts across run states for the host.
- Sthost_preferred_user_archA structure reporting the host's preferred user-space CPU architecture.
- Sthost_can_has_debugger_infoA structure reporting whether a debugger may attach to the host.
- Stkernel_resource_sizesA structure reporting the sizes of key kernel data structures.
Virtual Memory and Zone Introspection 13
Structures that expose the kernel's virtual memory regions and memory allocation zones.
- Stvm_info_regionA structure reporting introspection details about a virtual memory region.
- Stvm_info_region_64A structure reporting 64-bit introspection details about a virtual memory region.
- Stmach_vm_info_regionA structure reporting introspection details about a virtual memory region.
- Stvm_info_objectA structure reporting introspection details about a virtual memory object.
- Stzone_nameA structure holding the name of a kernel memory allocation zone.
- Stzone_infoA structure reporting statistics for a kernel memory allocation zone.
- Stmach_zone_nameA structure holding the name of a kernel memory zone for Mach introspection.
- Stmach_zone_info_dataA structure reporting detailed statistics for a kernel memory zone.
- Sttask_zone_info_dataA structure reporting per-task statistics for a kernel memory zone.
- Stmach_memory_infoA structure reporting introspection details about a region of kernel memory.
- Stzone_btrecordA structure recording a backtrace associated with a zone allocation.
- Stlockgroup_infoA structure reporting statistics for a kernel lock group.
- Sthash_info_bucketA structure describing the contents of one bucket in a kernel hash table.
IPC and Port Introspection 5
Structures that describe a task's IPC name space and individual Mach ports.
- Stipc_info_spaceA structure reporting introspection details about a task's IPC name space.
- Stipc_info_space_basicA structure reporting basic introspection details about a task's IPC name space.
- Stipc_info_nameA structure describing a single entry in a task's IPC name space.
- Stipc_info_tree_nameA structure describing an IPC name space entry within a splay-tree representation.
- Stipc_info_portA structure reporting introspection details about a Mach port.
Kernel Extensions and Modules 4
Structures that describe loaded kernel modules and their dependencies.
- Stkmod_infoWarning: Any changes to the kmod_info structure affect the
- Stkmod_info_32_v1A 32-bit layout of the structure describing a loaded kernel module.
- Stkmod_info_64_v1A 64-bit layout of the structure describing a loaded kernel module.
- Stkmod_referenceA structure linking one kernel module to another it depends on.
Dynamic Linker and Core Files 7
Structures describing dynamic-linker image state and the layout of kernel core dumps.
- Stdyld_kernel_image_infoA structure describing a loaded Mach-O image as tracked by the kernel's dynamic linker.
- Stdyld_kernel_process_infoA structure describing a process's dynamic linker state as tracked by the kernel.
- Stmach_core_detailsA structure describing a region recorded in a Mach kernel core file.
- Stmach_core_details_v2A version 2 structure describing a region recorded in a Mach kernel core file.
- Stmach_core_fileheaderA structure describing the header of a Mach kernel core file.
- Stmach_core_fileheader_baseA structure describing the common base of a Mach kernel core file header.
- Stmach_core_fileheader_v2A version 2 structure describing the header of a Mach kernel core file.
Hypervisor Notifications 2
Message structures the hypervisor framework delivers for guest memory and fault events.
- Sthv_data_abort_notification_t@typedef hv_data_abort_notification_t
- Sthv_vm_mem_access_msg_t@typedef hv_vm_mem_access_msg_t
Clock Service Messages 18
Mach message structures for reading, setting, and arming the clock subsystems.
- St__Request__clock_get_time_tThe Mach message request structure for reading a clock's current time.
- St__Request__clock_get_attributes_tThe Mach message request structure for querying a clock's attributes.
- St__Request__clock_alarm_tThe Mach message request structure for setting an alarm on a clock.
- St__RequestUnion__clock_subsystemA union of all request messages in the clock subsystem.
- St__Reply__clock_get_time_tThe Mach message reply structure returning a clock's current time.
- St__Reply__clock_get_attributes_tThe Mach message reply structure returning a clock's attributes.
- St__Reply__clock_alarm_tThe Mach message reply structure acknowledging a clock alarm request.
- St__ReplyUnion__clock_subsystemA union of all reply messages in the clock subsystem.
- St__Request__clock_set_time_tThe Mach message request structure for setting a privileged clock's time.
- St__Request__clock_set_attributes_tThe Mach message request structure for setting a privileged clock's attributes.
- St__RequestUnion__clock_priv_subsystemA union of all request messages in the privileged clock subsystem.
- St__Reply__clock_set_time_tThe Mach message reply structure acknowledging a privileged clock time change.
- St__Reply__clock_set_attributes_tThe Mach message reply structure acknowledging a privileged clock attribute change.
- St__ReplyUnion__clock_priv_subsystemA union of all reply messages in the privileged clock subsystem.
- St__Request__clock_alarm_reply_tThe Mach message request structure delivering a clock alarm callback.
- St__RequestUnion__clock_reply_subsystemA union of all request messages in the clock reply subsystem.
- St__Reply__clock_alarm_reply_tThe Mach message reply structure acknowledging a clock alarm callback.
- St__ReplyUnion__clock_reply_subsystemA union of all reply messages in the clock reply subsystem.
Exception Handling Messages 8
Mach message structures used to raise exceptions to handler ports.
- St__Request__exception_raise_tThe Mach message request structure that raises an exception to a handler port.
- St__Request__exception_raise_state_tThe Mach message request structure that raises an exception carrying thread state.
- St__Request__exception_raise_state_identity_tThe Mach message request structure that raises an exception carrying thread state and identity.
- St__RequestUnion__exc_subsystemA union of all request messages in the exception subsystem.
- St__Reply__exception_raise_tThe Mach message reply structure returned by an exception handler.
- St__Reply__exception_raise_state_tThe Mach message reply structure returning updated thread state from an exception handler.
- St__Reply__exception_raise_state_identity_tThe Mach message reply structure returning updated thread state and identity from an exception handler.
- St__ReplyUnion__exc_subsystemA union of all reply messages in the exception subsystem.
Mach Host Messages 58
Mach message structures for querying host information, statistics, clocks, vouchers, and processor sets.
- St__Request__host_info_tThe Mach message request structure for reading host information of a given flavor.
- St__Request__host_kernel_version_tThe Mach message request structure for reading the kernel version string.
- St__Request___host_page_size_tThe Mach message request structure for reading the host's page size.
- St__Request__mach_memory_object_memory_entry_tThe Mach message request structure for creating a memory entry for a memory object.
- St__Request__host_processor_info_tThe Mach message request structure for reading per-processor information.
- St__Request__host_get_io_main_tThe Mach message request structure for obtaining the I/O Kit main port.
- St__Request__host_get_clock_service_tThe Mach message request structure for obtaining a clock service port.
- St__Request__kmod_get_info_tThe Mach message request structure for reading information about loaded kernel modules.
- St__Request__host_virtual_physical_table_info_tThe Mach message request structure for reading the virtual-to-physical mapping table.
- St__Request__processor_set_default_tThe Mach message request structure for obtaining the default processor set.
- St__Request__processor_set_create_tThe Mach message request structure for creating a new processor set.
- St__Request__mach_memory_object_memory_entry_64_tThe Mach message request structure for creating a 64-bit memory entry for a memory object.
- St__Request__host_statistics_tThe Mach message request structure for reading host statistics of a given flavor.
- St__Request__host_request_notification_tThe Mach message request structure for requesting notification of a host event.
- St__Request__host_lockgroup_info_tThe Mach message request structure for reading kernel lock group statistics.
- St__Request__host_statistics64_tThe Mach message request structure for reading 64-bit host statistics.
- St__Request__mach_zone_info_tThe Mach message request structure for reading kernel memory zone statistics.
- St__Request__host_create_mach_voucher_tThe Mach message request structure for creating a Mach voucher on the host.
- St__Request__host_register_mach_voucher_attr_manager_tThe Mach message request structure for registering a Mach voucher attribute manager.
- St__Request__host_register_well_known_mach_voucher_attr_manager_tThe Mach message request structure for registering a well-known Mach voucher attribute manager.
- St__Request__host_set_atm_diagnostic_flag_tThe Mach message request structure for setting the host's ATM diagnostic flag.
- St__Request__host_get_atm_diagnostic_flag_tThe Mach message request structure for reading the host's ATM diagnostic flag.
- St__Request__mach_memory_info_tThe Mach message request structure for reading kernel memory introspection data.
- St__Request__host_set_multiuser_config_flags_tThe Mach message request structure for setting the host's multiuser configuration flags.
- St__Request__host_get_multiuser_config_flags_tThe Mach message request structure for reading the host's multiuser configuration flags.
- St__Request__host_check_multiuser_mode_tThe Mach message request structure for checking whether the host is in multiuser mode.
- St__Request__mach_zone_info_for_zone_tThe Mach message request structure for reading statistics for a specific memory zone.
- St__Request__mach_memory_info_redacted_tThe Mach message request structure for reading redacted kernel memory introspection data.
- St__RequestUnion__mach_host_subsystemA union of all request messages in the Mach host subsystem.
- St__Reply__host_info_tThe Mach message reply structure returning host information of a given flavor.
- St__Reply__host_kernel_version_tThe Mach message reply structure returning the kernel version string.
- St__Reply___host_page_size_tThe Mach message reply structure returning the host's page size.
- St__Reply__mach_memory_object_memory_entry_tThe Mach message reply structure returning a memory entry for a memory object.
- St__Reply__host_processor_info_tThe Mach message reply structure returning per-processor information.
- St__Reply__host_get_io_main_tThe Mach message reply structure returning the I/O Kit main port.
- St__Reply__host_get_clock_service_tThe Mach message reply structure returning a clock service port.
- St__Reply__kmod_get_info_tThe Mach message reply structure returning information about loaded kernel modules.
- St__Reply__host_virtual_physical_table_info_tThe Mach message reply structure returning the virtual-to-physical mapping table.
- St__Reply__processor_set_default_tThe Mach message reply structure returning the default processor set.
- St__Reply__processor_set_create_tThe Mach message reply structure returning a newly created processor set.
- St__Reply__mach_memory_object_memory_entry_64_tThe Mach message reply structure returning a 64-bit memory entry for a memory object.
- St__Reply__host_statistics_tThe Mach message reply structure returning host statistics of a given flavor.
- St__Reply__host_request_notification_tThe Mach message reply structure acknowledging a host notification request.
- St__Reply__host_lockgroup_info_tThe Mach message reply structure returning kernel lock group statistics.
- St__Reply__host_statistics64_tThe Mach message reply structure returning 64-bit host statistics.
- St__Reply__mach_zone_info_tThe Mach message reply structure returning kernel memory zone statistics.
- St__Reply__host_create_mach_voucher_tThe Mach message reply structure returning a newly created Mach voucher.
- St__Reply__host_register_mach_voucher_attr_manager_tThe Mach message reply structure acknowledging a Mach voucher attribute manager registration.
- St__Reply__host_register_well_known_mach_voucher_attr_manager_tThe Mach message reply structure acknowledging a well-known Mach voucher attribute manager registration.
- St__Reply__host_set_atm_diagnostic_flag_tThe Mach message reply structure acknowledging an ATM diagnostic flag change.
- St__Reply__host_get_atm_diagnostic_flag_tThe Mach message reply structure returning the host's ATM diagnostic flag.
- St__Reply__mach_memory_info_tThe Mach message reply structure returning kernel memory introspection data.
- St__Reply__host_set_multiuser_config_flags_tThe Mach message reply structure acknowledging a multiuser configuration flags change.
- St__Reply__host_get_multiuser_config_flags_tThe Mach message reply structure returning the host's multiuser configuration flags.
- St__Reply__host_check_multiuser_mode_tThe Mach message reply structure returning whether the host is in multiuser mode.
- St__Reply__mach_zone_info_for_zone_tThe Mach message reply structure returning statistics for a specific memory zone.
- St__Reply__mach_memory_info_redacted_tThe Mach message reply structure returning redacted kernel memory introspection data.
- St__ReplyUnion__mach_host_subsystemA union of all reply messages in the Mach host subsystem.
Privileged Host Messages 48
Mach message structures for privileged host operations like reboot, memory wiring, and exception ports.
- St__Request__host_get_boot_info_tThe Mach message request structure for reading the host's boot information string.
- St__Request__host_reboot_tThe Mach message request structure for rebooting the host.
- St__Request__host_priv_statistics_tThe Mach message request structure for reading privileged host statistics.
- St__Request__host_default_memory_manager_tThe Mach message request structure for setting the host's default memory manager.
- St__Request__vm_wire_tThe Mach message request structure for wiring or unwiring virtual memory.
- St__Request__thread_wire_tThe Mach message request structure for marking a thread as privileged for paging.
- St__Request__vm_allocate_cpm_tThe Mach message request structure for allocating contiguous physical memory.
- St__Request__host_processors_tThe Mach message request structure for listing the host's processors.
- St__Request__host_get_clock_control_tThe Mach message request structure for obtaining a clock's privileged control port.
- St__Request__kmod_create_tThe Mach message request structure for creating a kernel module reference.
- St__Request__kmod_destroy_tThe Mach message request structure for destroying a kernel module reference.
- St__Request__kmod_control_tThe Mach message request structure for controlling a kernel module.
- St__Request__host_get_special_port_tThe Mach message request structure for retrieving a host special port.
- St__Request__host_set_special_port_tThe Mach message request structure for assigning a host special port.
- St__Request__host_set_exception_ports_tThe Mach message request structure for setting the host's exception handler ports.
- St__Request__host_get_exception_ports_tThe Mach message request structure for retrieving the host's exception handler ports.
- St__Request__host_swap_exception_ports_tThe Mach message request structure for atomically replacing the host's exception ports.
- St__Request__mach_vm_wire_tThe Mach message request structure for wiring or unwiring virtual memory by address.
- St__Request__host_processor_sets_tThe Mach message request structure for listing the host's processor sets.
- St__Request__host_processor_set_priv_tThe Mach message request structure for obtaining a processor set's privileged control port.
- St__Request__host_set_UNDServer_tThe Mach message request structure for setting the host's user notification server port.
- St__Request__host_get_UNDServer_tThe Mach message request structure for retrieving the host's user notification server port.
- St__Request__kext_request_tThe Mach message request structure for sending a request to the kernel extension server.
- St__RequestUnion__host_priv_subsystemA union of all request messages in the privileged host subsystem.
- St__Reply__host_get_boot_info_tThe Mach message reply structure returning the host's boot information string.
- St__Reply__host_reboot_tThe Mach message reply structure acknowledging a host reboot request.
- St__Reply__host_priv_statistics_tThe Mach message reply structure returning privileged host statistics.
- St__Reply__host_default_memory_manager_tThe Mach message reply structure acknowledging a default memory manager change.
- St__Reply__vm_wire_tThe Mach message reply structure acknowledging a virtual memory wiring request.
- St__Reply__thread_wire_tThe Mach message reply structure acknowledging a thread paging-privilege request.
- St__Reply__vm_allocate_cpm_tThe Mach message reply structure returning a contiguous physical memory allocation.
- St__Reply__host_processors_tThe Mach message reply structure returning the host's processor list.
- St__Reply__host_get_clock_control_tThe Mach message reply structure returning a clock's privileged control port.
- St__Reply__kmod_create_tThe Mach message reply structure acknowledging a kernel module creation.
- St__Reply__kmod_destroy_tThe Mach message reply structure acknowledging a kernel module destruction.
- St__Reply__kmod_control_tThe Mach message reply structure returning the result of a kernel module control request.
- St__Reply__host_get_special_port_tThe Mach message reply structure returning a host special port.
- St__Reply__host_set_special_port_tThe Mach message reply structure acknowledging a host special port assignment.
- St__Reply__host_set_exception_ports_tThe Mach message reply structure acknowledging a host exception ports change.
- St__Reply__host_get_exception_ports_tThe Mach message reply structure returning the host's exception handler ports.
- St__Reply__host_swap_exception_ports_tThe Mach message reply structure returning the host's previous exception ports after a swap.
- St__Reply__mach_vm_wire_tThe Mach message reply structure acknowledging a virtual memory wiring request.
- St__Reply__host_processor_sets_tThe Mach message reply structure returning the host's processor sets.
- St__Reply__host_processor_set_priv_tThe Mach message reply structure returning a processor set's privileged control port.
- St__Reply__host_set_UNDServer_tThe Mach message reply structure acknowledging a user notification server port change.
- St__Reply__host_get_UNDServer_tThe Mach message reply structure returning the host's user notification server port.
- St__Reply__kext_request_tThe Mach message reply structure returning the result of a kernel extension server request.
- St__ReplyUnion__host_priv_subsystemA union of all reply messages in the privileged host subsystem.
Host Security Messages 6
Mach message structures for creating and assigning task security tokens.
- St__Request__host_security_create_task_token_tThe Mach message request structure for creating a task with a security token.
- St__Request__host_security_set_task_token_tThe Mach message request structure for setting a task's security token.
- St__RequestUnion__host_security_subsystemA union of all request messages in the host security subsystem.
- St__Reply__host_security_create_task_token_tThe Mach message reply structure returning a newly created security-tokened task.
- St__Reply__host_security_set_task_token_tThe Mach message reply structure acknowledging a task security token change.
- St__ReplyUnion__host_security_subsystemA union of all reply messages in the host security subsystem.
Mach Port Messages 21
Mach message structures for allocating, naming, referencing, and configuring Mach ports.
- St__Request__mach_port_names_tThe Mach message request structure for listing the names in a port name space.
- St__Request__mach_port_type_tThe Mach message request structure for querying the type of a port right.
- St__Request__mach_port_rename_tThe Mach message request structure for renaming a port right.
- St__Request__mach_port_allocate_name_tThe Mach message request structure for allocating a port right with a chosen name.
- St__Request__mach_port_allocate_tThe Mach message request structure for allocating a new port right.
- St__Request__mach_port_destroy_tThe Mach message request structure for destroying a port name and all its rights.
- St__Request__mach_port_deallocate_tThe Mach message request structure for releasing a user reference on a port right.
- St__Request__mach_port_get_refs_tThe Mach message request structure for reading the reference count of a port right.
- St__Request__mach_port_mod_refs_tThe Mach message request structure for modifying the reference count of a port right.
- St__Request__mach_port_peek_tThe Mach message request structure for peeking at a message in a port's queue.
- St__Request__mach_port_set_mscount_tThe Mach message request structure for setting a receive right's make-send count.
- St__Request__mach_port_get_set_status_tThe Mach message request structure for reading the membership of a port set.
- St__Request__mach_port_move_member_tThe Mach message request structure for moving a receive right into or out of a port set.
- St__Request__mach_port_request_notification_tThe Mach message request structure for requesting a notification on a port.
- St__Request__mach_port_insert_right_tThe Mach message request structure for inserting a port right into a name space.
- St__Request__mach_port_extract_right_tThe Mach message request structure for extracting a port right from a name space.
- St__Request__mach_port_set_seqno_tThe Mach message request structure for setting a receive right's message sequence number.
- St__Request__mach_port_get_attributes_tThe Mach message request structure for reading a port's attributes.
- St__Request__mach_port_set_attributes_tThe Mach message request structure for setting a port's attributes.
- St__Request__mach_port_allocate_qos_tThe Mach message request structure for allocating a port right with quality-of-service options.
- St__Request__mach_port_allocate_full_tThe Mach message request structure for allocating a port right with full options.
Structures 1166
- St__Request__task_set_port_space_t
- St__Request__mach_port_get_srights_t
- St__Request__mach_port_space_info_t
- St__Request__mach_port_dnrequest_info_t
- St__Request__mach_port_kernel_object_t
- St__Request__mach_port_insert_member_t
- St__Request__mach_port_extract_member_t
- St__Request__mach_port_get_context_t
- St__Request__mach_port_set_context_t
- St__Request__mach_port_kobject_t
- St__Request__mach_port_construct_t
- St__Request__mach_port_destruct_t
- St__Request__mach_port_guard_t
- St__Request__mach_port_unguard_t
- St__Request__mach_port_space_basic_info_t
- St__Request__mach_port_guard_with_flags_t
Show 1150 more
- St__Request__mach_port_swap_guard_t
- St__Request__mach_port_kobject_description_t
- St__Request__mach_port_is_connection_for_service_t
- St__Request__mach_port_get_service_port_info_t
- St__Request__mach_port_assert_attributes_t
- St__RequestUnion__mach_port_subsystem
- St__Reply__mach_port_names_t
- St__Reply__mach_port_type_t
- St__Reply__mach_port_rename_t
- St__Reply__mach_port_allocate_name_t
- St__Reply__mach_port_allocate_t
- St__Reply__mach_port_destroy_t
- St__Reply__mach_port_deallocate_t
- St__Reply__mach_port_get_refs_t
- St__Reply__mach_port_mod_refs_t
- St__Reply__mach_port_peek_t
- St__Reply__mach_port_set_mscount_t
- St__Reply__mach_port_get_set_status_t
- St__Reply__mach_port_move_member_t
- St__Reply__mach_port_request_notification_t
- St__Reply__mach_port_insert_right_t
- St__Reply__mach_port_extract_right_t
- St__Reply__mach_port_set_seqno_t
- St__Reply__mach_port_get_attributes_t
- St__Reply__mach_port_set_attributes_t
- St__Reply__mach_port_allocate_qos_t
- St__Reply__mach_port_allocate_full_t
- St__Reply__task_set_port_space_t
- St__Reply__mach_port_get_srights_t
- St__Reply__mach_port_space_info_t
- St__Reply__mach_port_dnrequest_info_t
- St__Reply__mach_port_kernel_object_t
- St__Reply__mach_port_insert_member_t
- St__Reply__mach_port_extract_member_t
- St__Reply__mach_port_get_context_t
- St__Reply__mach_port_set_context_t
- St__Reply__mach_port_kobject_t
- St__Reply__mach_port_construct_t
- St__Reply__mach_port_destruct_t
- St__Reply__mach_port_guard_t
- St__Reply__mach_port_unguard_t
- St__Reply__mach_port_space_basic_info_t
- St__Reply__mach_port_guard_with_flags_t
- St__Reply__mach_port_swap_guard_t
- St__Reply__mach_port_kobject_description_t
- St__Reply__mach_port_is_connection_for_service_t
- St__Reply__mach_port_get_service_port_info_t
- St__Reply__mach_port_assert_attributes_t
- St__ReplyUnion__mach_port_subsystem
- Stmach_timebase_info
- St__Request__mach_vm_allocate_t
- St__Request__mach_vm_deallocate_t
- St__Request__mach_vm_protect_t
- St__Request__mach_vm_inherit_t
- St__Request__mach_vm_read_t
- St__Request__mach_vm_read_list_t
- St__Request__mach_vm_write_t
- St__Request__mach_vm_copy_t
- St__Request__mach_vm_read_overwrite_t
- St__Request__mach_vm_msync_t
- St__Request__mach_vm_behavior_set_t
- St__Request__mach_vm_map_t
- St__Request__mach_vm_machine_attribute_t
- St__Request__mach_vm_remap_t
- St__Request__mach_vm_page_query_t
- St__Request__mach_vm_region_recurse_t
- St__Request__mach_vm_region_t
- St__Request___mach_make_memory_entry_t
- St__Request__mach_vm_purgable_control_t
- St__Request__mach_vm_page_info_t
- St__Request__mach_vm_page_range_query_t
- St__Request__mach_vm_remap_new_t
- St__Request__mach_vm_range_create_t
- St__Request__mach_vm_update_pointers_with_remote_tags_t
- St__Request__mach_vm_reallocate_t
- St__RequestUnion__mach_vm_subsystem
- St__Reply__mach_vm_allocate_t
- St__Reply__mach_vm_deallocate_t
- St__Reply__mach_vm_protect_t
- St__Reply__mach_vm_inherit_t
- St__Reply__mach_vm_read_t
- St__Reply__mach_vm_read_list_t
- St__Reply__mach_vm_write_t
- St__Reply__mach_vm_copy_t
- St__Reply__mach_vm_read_overwrite_t
- St__Reply__mach_vm_msync_t
- St__Reply__mach_vm_behavior_set_t
- St__Reply__mach_vm_map_t
- St__Reply__mach_vm_machine_attribute_t
- St__Reply__mach_vm_remap_t
- St__Reply__mach_vm_page_query_t
- St__Reply__mach_vm_region_recurse_t
- St__Reply__mach_vm_region_t
- St__Reply___mach_make_memory_entry_t
- St__Reply__mach_vm_purgable_control_t
- St__Reply__mach_vm_page_info_t
- St__Reply__mach_vm_page_range_query_t
- St__Reply__mach_vm_remap_new_t
- St__Reply__mach_vm_range_create_t
- St__Reply__mach_vm_update_pointers_with_remote_tags_t
- St__Reply__mach_vm_reallocate_t
- St__ReplyUnion__mach_vm_subsystem
- St__Request__mach_voucher_extract_attr_content_t
- St__Request__mach_voucher_extract_attr_recipe_t
- St__Request__mach_voucher_extract_all_attr_recipes_t
- St__Request__mach_voucher_attr_command_t
- St__Request__mach_voucher_debug_info_t
- St__RequestUnion__mach_voucher_subsystem
- St__Reply__mach_voucher_extract_attr_content_t
- St__Reply__mach_voucher_extract_attr_recipe_t
- St__Reply__mach_voucher_extract_all_attr_recipes_t
- St__Reply__mach_voucher_attr_command_t
- St__Reply__mach_voucher_debug_info_t
- St__ReplyUnion__mach_voucher_subsystem
- Stmach_voucher_attr_recipe_data
- Stprocessor_cpu_stat
- Stprocessor_cpu_stat64
- Starm_state_hdr
- Starm_unified_thread_state
- St__Request__mach_memory_entry_purgable_control_t
- St__Request__mach_memory_entry_access_tracking_t
- St__Request__mach_memory_entry_ownership_t
- St__Request__mach_memory_entry_get_page_counts_t
- St__Request__mach_memory_entry_region_info_t
- St__RequestUnion__memory_entry_subsystem
- St__Reply__mach_memory_entry_purgable_control_t
- St__Reply__mach_memory_entry_access_tracking_t
- St__Reply__mach_memory_entry_ownership_t
- St__Reply__mach_memory_entry_get_page_counts_t
- St__Reply__mach_memory_entry_region_info_t
- St__ReplyUnion__memory_entry_subsystem
- Stmemory_object_perf_info
- Stmemory_object_attr_info
- Stmemory_object_behave_info
- Stmach_msg_type_descriptor_t
- Stmach_msg_port_descriptor_t
- Stmach_msg_ool_descriptor32_t
- Stmach_msg_ool_descriptor64_t
- Stmach_msg_ool_descriptor_t
- Stmach_msg_ool_ports_descriptor32_t
- Stmach_msg_ool_ports_descriptor64_t
- Stmach_msg_ool_ports_descriptor_t
- Stmach_msg_guarded_port_descriptor32_t
- Stmach_msg_guarded_port_descriptor64_t
- Stmach_msg_guarded_port_descriptor_t
- Stmach_msg_descriptor_t
- Stmach_msg_body_t
- Stmach_msg_header_t
- Stmach_msg_base_t
- Stmach_msg_trailer_t
- Stmach_msg_seqno_trailer_t
- Stsecurity_token_t
- Stmach_msg_security_trailer_t
- Staudit_token_t
- Stmach_msg_audit_trailer_t
- Stmach_msg_context_trailer_t
- Stmsg_labels_t
- Stmach_msg_mac_trailer_t
- Stmach_msg_empty_send_t
- Stmach_msg_empty_rcv_t
- Stmach_msg_empty_t
- Stroutine_descriptor
- Stmig_subsystem
- Stmig_symtab
- Stmig_reply_error_t
- StNDR_record_t
- Stmach_port_deleted_notification_t
- Stmach_send_possible_notification_t
- Stmach_port_destroyed_notification_t
- Stmach_no_senders_notification_t
- Stmach_send_once_notification_t
- Stmach_dead_name_notification_t
- Stpolicy_timeshare_base
- Stpolicy_timeshare_limit
- Stpolicy_timeshare_info
- Stpolicy_rr_base
- Stpolicy_rr_limit
- Stpolicy_rr_info
- Stpolicy_fifo_base
- Stpolicy_fifo_limit
- Stpolicy_fifo_info
- Stpolicy_bases
- Stpolicy_limits
- Stpolicy_infos
- Stmach_port_status
- Stmach_port_limits
- Stmach_port_info_ext
- Stmach_port_guard_info
- Stmach_port_qos
- Stmach_service_port_info
- Stmpo_flags_t
- Stmach_port_options
- Stmach_port_guard_exception_codes
- Stport_obj_tentry
- St__Request__processor_start_t
- St__Request__processor_exit_t
- St__Request__processor_info_t
- St__Request__processor_control_t
- St__Request__processor_assign_t
- St__Request__processor_get_assignment_t
- St__RequestUnion__processor_subsystem
- St__Reply__processor_start_t
- St__Reply__processor_exit_t
- St__Reply__processor_info_t
- St__Reply__processor_control_t
- St__Reply__processor_assign_t
- St__Reply__processor_get_assignment_t
- St__ReplyUnion__processor_subsystem
- Stprocessor_basic_info
- Stprocessor_cpu_load_info
- Stprocessor_set_basic_info
- Stprocessor_set_load_info
- St__Request__processor_set_statistics_t
- St__Request__processor_set_destroy_t
- St__Request__processor_set_max_priority_t
- St__Request__processor_set_policy_enable_t
- St__Request__processor_set_policy_disable_t
- St__Request__processor_set_tasks_t
- St__Request__processor_set_threads_t
- St__Request__processor_set_policy_control_t
- St__Request__processor_set_stack_usage_t
- St__Request__processor_set_info_t
- St__Request__processor_set_tasks_with_flavor_t
- St__RequestUnion__processor_set_subsystem
- St__Reply__processor_set_statistics_t
- St__Reply__processor_set_destroy_t
- St__Reply__processor_set_max_priority_t
- St__Reply__processor_set_policy_enable_t
- St__Reply__processor_set_policy_disable_t
- St__Reply__processor_set_tasks_t
- St__Reply__processor_set_threads_t
- St__Reply__processor_set_policy_control_t
- St__Reply__processor_set_stack_usage_t
- St__Reply__processor_set_info_t
- St__Reply__processor_set_tasks_with_flavor_t
- St__ReplyUnion__processor_set_subsystem
- Strpc_routine_arg_descriptor
- Strpc_routine_descriptor
- Strpc_signature
- Strpc_subsystem
- Stshared_file_mapping_np
- Stshared_file_mapping_slide_np
- Stshared_file_np
- Stsrc_start_address_t
- St__Request__task_create_t
- St__Request__task_terminate_t
- St__Request__task_threads_t
- St__Request__mach_ports_register_t
- St__Request__mach_ports_lookup_t
- St__Request__task_info_t
- St__Request__task_set_info_t
- St__Request__task_suspend_t
- St__Request__task_resume_t
- St__Request__task_get_special_port_t
- St__Request__task_set_special_port_t
- St__Request__thread_create_t
- St__Request__thread_create_running_t
- St__Request__task_set_exception_ports_t
- St__Request__task_get_exception_ports_t
- St__Request__task_swap_exception_ports_t
- St__Request__lock_set_create_t
- St__Request__lock_set_destroy_t
- St__Request__semaphore_create_t
- St__Request__semaphore_destroy_t
- St__Request__task_policy_set_t
- St__Request__task_policy_get_t
- St__Request__task_sample_t
- St__Request__task_policy_t
- St__Request__task_set_emulation_t
- St__Request__task_get_emulation_vector_t
- St__Request__task_set_emulation_vector_t
- St__Request__task_set_ras_pc_t
- St__Request__task_zone_info_t
- St__Request__task_assign_t
- St__Request__task_assign_default_t
- St__Request__task_get_assignment_t
- St__Request__task_set_policy_t
- St__Request__task_get_state_t
- St__Request__task_set_state_t
- St__Request__task_set_phys_footprint_limit_t
- St__Request__task_suspend2_t
- St__Request__task_resume2_t
- St__Request__task_purgable_info_t
- St__Request__task_get_mach_voucher_t
- St__Request__task_set_mach_voucher_t
- St__Request__task_swap_mach_voucher_t
- St__Request__task_generate_corpse_t
- St__Request__task_map_corpse_info_t
- St__Request__task_register_dyld_image_infos_t
- St__Request__task_unregister_dyld_image_infos_t
- St__Request__task_get_dyld_image_infos_t
- St__Request__task_register_dyld_shared_cache_image_info_t
- St__Request__task_register_dyld_set_dyld_state_t
- St__Request__task_register_dyld_get_process_state_t
- St__Request__task_map_corpse_info_64_t
- St__Request__task_inspect_t
- St__Request__task_get_exc_guard_behavior_t
- St__Request__task_set_exc_guard_behavior_t
- St__Request__task_dyld_process_info_notify_register_t
- St__Request__task_create_identity_token_t
- St__Request__task_identity_token_get_task_port_t
- St__Request__task_dyld_process_info_notify_deregister_t
- St__Request__task_get_exception_ports_info_t
- St__Request__task_test_sync_upcall_t
- St__Request__task_set_corpse_forking_behavior_t
- St__Request__task_test_async_upcall_propagation_t
- St__Request__task_map_kcdata_object_64_t
- St__Request__task_register_hardened_exception_handler_t
- St__RequestUnion__task_subsystem
- St__Reply__task_create_t
- St__Reply__task_terminate_t
- St__Reply__task_threads_t
- St__Reply__mach_ports_register_t
- St__Reply__mach_ports_lookup_t
- St__Reply__task_info_t
- St__Reply__task_set_info_t
- St__Reply__task_suspend_t
- St__Reply__task_resume_t
- St__Reply__task_get_special_port_t
- St__Reply__task_set_special_port_t
- St__Reply__thread_create_t
- St__Reply__thread_create_running_t
- St__Reply__task_set_exception_ports_t
- St__Reply__task_get_exception_ports_t
- St__Reply__task_swap_exception_ports_t
- St__Reply__lock_set_create_t
- St__Reply__lock_set_destroy_t
- St__Reply__semaphore_create_t
- St__Reply__semaphore_destroy_t
- St__Reply__task_policy_set_t
- St__Reply__task_policy_get_t
- St__Reply__task_sample_t
- St__Reply__task_policy_t
- St__Reply__task_set_emulation_t
- St__Reply__task_get_emulation_vector_t
- St__Reply__task_set_emulation_vector_t
- St__Reply__task_set_ras_pc_t
- St__Reply__task_zone_info_t
- St__Reply__task_assign_t
- St__Reply__task_assign_default_t
- St__Reply__task_get_assignment_t
- St__Reply__task_set_policy_t
- St__Reply__task_get_state_t
- St__Reply__task_set_state_t
- St__Reply__task_set_phys_footprint_limit_t
- St__Reply__task_suspend2_t
- St__Reply__task_resume2_t
- St__Reply__task_purgable_info_t
- St__Reply__task_get_mach_voucher_t
- St__Reply__task_set_mach_voucher_t
- St__Reply__task_swap_mach_voucher_t
- St__Reply__task_generate_corpse_t
- St__Reply__task_map_corpse_info_t
- St__Reply__task_register_dyld_image_infos_t
- St__Reply__task_unregister_dyld_image_infos_t
- St__Reply__task_get_dyld_image_infos_t
- St__Reply__task_register_dyld_shared_cache_image_info_t
- St__Reply__task_register_dyld_set_dyld_state_t
- St__Reply__task_register_dyld_get_process_state_t
- St__Reply__task_map_corpse_info_64_t
- St__Reply__task_inspect_t
- St__Reply__task_get_exc_guard_behavior_t
- St__Reply__task_set_exc_guard_behavior_t
- St__Reply__task_dyld_process_info_notify_register_t
- St__Reply__task_create_identity_token_t
- St__Reply__task_identity_token_get_task_port_t
- St__Reply__task_dyld_process_info_notify_deregister_t
- St__Reply__task_get_exception_ports_info_t
- St__Reply__task_test_sync_upcall_t
- St__Reply__task_set_corpse_forking_behavior_t
- St__Reply__task_test_async_upcall_propagation_t
- St__Reply__task_map_kcdata_object_64_t
- St__Reply__task_register_hardened_exception_handler_t
- St__ReplyUnion__task_subsystem
- Sttask_basic_info_32
- Sttask_basic_info_64
- Sttask_basic_info
- Sttask_events_info
- Sttask_thread_times_info
- Sttask_absolutetime_info
- Sttask_kernelmemory_info
- Sttask_affinity_tag_info
- Sttask_dyld_info
- Sttask_basic_info_64_2
- Sttask_extmod_info
- Stmach_task_basic_info
- Sttask_power_info
- Sttask_vm_info
- Sttask_trace_memory_info
- Sttask_wait_state_info
- Stgpu_energy_data
- Sttask_power_info_v2
- Sttask_flags_info
- Sttask_security_config_info
- Sttask_ipc_space_policy_info
- Sttask_vm_shared_cache_info
- Sttask_shared_region_stubs_t
- Sttask_shared_region_info
- Sttask_inspect_flavor
- Sttask_inspect_basic_counts
- Sttask_role
- Sttask_category_policy
- Sttask_latency_qos
- Sttask_throughput_qos
- Sttask_qos_policy
- St__Request__thread_terminate_t
- St__Request__act_get_state_t
- St__Request__act_set_state_t
- St__Request__thread_get_state_t
- St__Request__thread_set_state_t
- St__Request__thread_suspend_t
- St__Request__thread_resume_t
- St__Request__thread_abort_t
- St__Request__thread_abort_safely_t
- St__Request__thread_depress_abort_t
- St__Request__thread_get_special_port_t
- St__Request__thread_set_special_port_t
- St__Request__thread_info_t
- St__Request__thread_set_exception_ports_t
- St__Request__thread_get_exception_ports_t
- St__Request__thread_swap_exception_ports_t
- St__Request__thread_policy_t
- St__Request__thread_policy_set_t
- St__Request__thread_policy_get_t
- St__Request__thread_sample_t
- St__Request__etap_trace_thread_t
- St__Request__thread_assign_t
- St__Request__thread_assign_default_t
- St__Request__thread_get_assignment_t
- St__Request__thread_set_policy_t
- St__Request__thread_get_mach_voucher_t
- St__Request__thread_set_mach_voucher_t
- St__Request__thread_swap_mach_voucher_t
- St__Request__thread_convert_thread_state_t
- St__Request__thread_get_exception_ports_info_t
- St__Request__thread_adopt_exception_handler_t
- St__Request__thread_suspend2_t
- St__Request__thread_resume2_t
- St__RequestUnion__thread_act_subsystem
- St__Reply__thread_terminate_t
- St__Reply__act_get_state_t
- St__Reply__act_set_state_t
- St__Reply__thread_get_state_t
- St__Reply__thread_set_state_t
- St__Reply__thread_suspend_t
- St__Reply__thread_resume_t
- St__Reply__thread_abort_t
- St__Reply__thread_abort_safely_t
- St__Reply__thread_depress_abort_t
- St__Reply__thread_get_special_port_t
- St__Reply__thread_set_special_port_t
- St__Reply__thread_info_t
- St__Reply__thread_set_exception_ports_t
- St__Reply__thread_get_exception_ports_t
- St__Reply__thread_swap_exception_ports_t
- St__Reply__thread_policy_t
- St__Reply__thread_policy_set_t
- St__Reply__thread_policy_get_t
- St__Reply__thread_sample_t
- St__Reply__etap_trace_thread_t
- St__Reply__thread_assign_t
- St__Reply__thread_assign_default_t
- St__Reply__thread_get_assignment_t
- St__Reply__thread_set_policy_t
- St__Reply__thread_get_mach_voucher_t
- St__Reply__thread_set_mach_voucher_t
- St__Reply__thread_swap_mach_voucher_t
- St__Reply__thread_convert_thread_state_t
- St__Reply__thread_get_exception_ports_info_t
- St__Reply__thread_adopt_exception_handler_t
- St__Reply__thread_suspend2_t
- St__Reply__thread_resume2_t
- St__ReplyUnion__thread_act_subsystem
- Stthread_basic_info
- Stthread_identifier_info
- Stthread_extended_info
- Stio_stat_entry
- Stio_stat_info
- Stthread_standard_policy
- Stthread_extended_policy
- Stthread_time_constraint_policy
- Stthread_precedence_policy
- Stthread_affinity_policy
- Stthread_background_policy
- Stthread_latency_qos_policy
- Stthread_throughput_qos_policy
- Sttime_value
- St__Request__vm_region_t
- St__Request__vm_allocate_t
- St__Request__vm_deallocate_t
- St__Request__vm_protect_t
- St__Request__vm_inherit_t
- St__Request__vm_read_t
- St__Request__vm_read_list_t
- St__Request__vm_write_t
- St__Request__vm_copy_t
- St__Request__vm_read_overwrite_t
- St__Request__vm_msync_t
- St__Request__vm_behavior_set_t
- St__Request__vm_map_t
- St__Request__vm_machine_attribute_t
- St__Request__vm_remap_t
- St__Request__task_wire_t
- St__Request__mach_make_memory_entry_t
- St__Request__vm_map_page_query_t
- St__Request__mach_vm_region_info_t
- St__Request__vm_mapped_pages_info_t
- St__Request__vm_region_recurse_t
- St__Request__vm_region_recurse_64_t
- St__Request__mach_vm_region_info_64_t
- St__Request__vm_region_64_t
- St__Request__mach_make_memory_entry_64_t
- St__Request__vm_map_64_t
- St__Request__vm_purgable_control_t
- St__Request__vm_map_exec_lockdown_t
- St__Request__vm_remap_new_t
- St__Request__vm_reallocate_t
- St__RequestUnion__vm_map_subsystem
- St__Reply__vm_region_t
- St__Reply__vm_allocate_t
- St__Reply__vm_deallocate_t
- St__Reply__vm_protect_t
- St__Reply__vm_inherit_t
- St__Reply__vm_read_t
- St__Reply__vm_read_list_t
- St__Reply__vm_write_t
- St__Reply__vm_copy_t
- St__Reply__vm_read_overwrite_t
- St__Reply__vm_msync_t
- St__Reply__vm_behavior_set_t
- St__Reply__vm_map_t
- St__Reply__vm_machine_attribute_t
- St__Reply__vm_remap_t
- St__Reply__task_wire_t
- St__Reply__mach_make_memory_entry_t
- St__Reply__vm_map_page_query_t
- St__Reply__mach_vm_region_info_t
- St__Reply__vm_mapped_pages_info_t
- St__Reply__vm_region_recurse_t
- St__Reply__vm_region_recurse_64_t
- St__Reply__mach_vm_region_info_64_t
- St__Reply__vm_region_64_t
- St__Reply__mach_make_memory_entry_64_t
- St__Reply__vm_map_64_t
- St__Reply__vm_purgable_control_t
- St__Reply__vm_map_exec_lockdown_t
- St__Reply__vm_remap_new_t
- St__Reply__vm_reallocate_t
- St__ReplyUnion__vm_map_subsystem
- Stvm_region_basic_info_64
- Stvm_region_basic_info
- Stvm_region_extended_info
- Stvm_region_top_info
- Stvm_region_submap_info
- Stvm_region_submap_info_64
- Stvm_region_submap_short_info_64
- Stmach_vm_read_entry
- Stvm_read_entry
- Stvm_page_info_basic
- Stvm_page_info_extended
- Stvm_statistics
- Stvm_statistics64
- Stvm_extmod_statistics
- Stvm_purgeable_stat
- Stvm_purgeable_info
- Stmach_vm_range@typedef mach_vm_range_t
- Stmach_vm_range_flags_t@enum mach_vm_range_flags_t
- Stmach_vm_range_recipe_v1_t
- Staiocb
- StDIR
- Stdirent
- Stdl_infoStructure filled in by dladdr().
- Stflock
- Stflocktimeout
- Stradvisory
- Stradvisoryv
- Stfsignatures
- Stfsupplement
- Stfchecklv
- Stfgetsigsinfo
- Stfstore
- Stfpunchhole
- Stftrimactivefile
- Stfspecread
- Stfattributiontag
- Stlog2phys
- Stfilesec_property_t
- StFTW
- Stglob_t
- Stgroup
- Sticonv_allocation_t
- Sticonv_hooks
- Sticonv_fallbacks
- Stifaddrs
- Stifmaddrs
- Stttysize
- Stdatum
- StDBM
- Stsockaddr_dl
- Stif_clonereq
- Stif_msghdr
- Stifa_msghdr
- Stifma_msghdr
- Stif_msghdr2
- Stifma_msghdr2
- Stifdevmtu
- Stifkpi
- Stifreq
- Stifaliasreq
- Strslvmulti_req
- Stifmediareq
- Stifdrv
- Stifstat
- Stifconf
- Stkev_dl_proto_data
- Stif_nameindex
- Sthostent
- Stnetent
- Stservent
- Stprotoent
- Staddrinfo
- Strpcent
- Stin_addr
- Stsockaddr_in
- Stip_opts
- Stip_mreq
- Stip_mreqn
- Stip_mreq_source
- Stgroup_req
- Stgroup_source_req
- St__msfilterreq
- Stin_pktinfo
- Stin6_addr
- Stsockaddr_in6
- Stipv6_mreq
- Stin6_pktinfo
- Stip6_mtuinfo
- Sttcphdr
- Sttcp_connection_info
- Stpollfd
- Stpasswd
- Stregex_t
- Stregmatch_t
- Stentry
- StACTION
- StVISIT
- Stpseminfo
- Stipc_perm
- St__msqid_ds_new
- Stmsg
- Stmymsg
- Stmsginfo
- St__semid_ds_new
- Stsem
- Stsembuf
- Stsemun
- St__shmid_ds_new
- Stpshminfo
- Stsa_endpoints
- Stlinger
- Stso_np_extensions
- Stsockaddr
- St__sockaddr_header
- Stsockproto
- Stsockaddr_storage
- Stmsghdr
- Stcmsghdr
- Stsf_hdtr
- Stostat
- Ststat
- Ststatvfs
- Stitimerval
- Sttimezone
- Stclockinfo
- Sttms
- Stfsid
- Stfsobj_id
- Stsecure_boot_cryptex_args
- Stgraft_args
- Stguid_t
- Stiovec
- Sttimeval32
- Sttimeval64
- St__darwin_ucontext64
- Stuio_rw
- Stsockaddr_un
- Stutsname
- Stsockaddr_vm
- Stxvsockpcb
- Stxvsockpgen
- Sttermios
- Stutimbuf
- Stutmpx
- Stlastlogx
- Stwordexp_t
- StNXByteOrder
- Stproc_persona_info
- Stpersona_token
- Stpersona_modify_info
- Stau_tid
- Stau_tid_addr
- Stau_mask
- Stauditinfo
- Stauditinfo_addr
- Stauditpinfo
- Stauditpinfo_addr
- Stau_session
- Stau_expire_after
- Stau_qctrl
- Staudit_stat
- Staudit_fstat
- Stau_evclass_map
- Staudit_session_flags
- Stau_sdev_open_flags
- Stau_sdev_handle
- Stau_event_ent
- Stau_class_ent
- Stau_user_ent
- Stau_tid32
- Stau_tid64
- Stau_tidaddr32
- Stau_tidaddr64
- Stau_arg32_t
- Stau_arg64_t
- Stau_arb_t
- Stau_attr32_t
- Stau_attr64_t
- Stau_execarg_t
- Stau_execenv_t
- Stau_cert_hash_t
- Stau_krb5_principal_t
- Stau_exit_t
- Stau_file_t
- Stau_groups_t
- Stau_header32_t
- Stau_header32_ex_t
- Stau_header64_t
- Stau_header64_ex_t
- Stau_inaddr_t
- Stau_inaddr_ex_t
- Stau_ip_t
- Stau_ipc_t
- Stau_ipcperm_t
- Stau_iport_t
- Stau_opaque_t
- Stau_path_t
- Stau_proc32_t
- Stau_proc64_t
- Stau_proc32ex_t
- Stau_proc64ex_t
- Stau_ret32_t
- Stau_ret64_t
- Stau_seq_t
- Stau_socket_t
- Stau_socket_ex32_t
- Stau_socketinet_ex32_t
- Stau_socketinet32_t
- Stau_socketunix_t
- Stau_subject32_t
- Stau_subject64_t
- Stau_subject32ex_t
- Stau_subject64ex_t
- Stau_text_t
- Stau_zonename_t
- Stau_kevent_t
- Stau_invalid_t
- Stau_identity_t
- Stau_trailer_t
- Sttokenstr
- Stimage_offset
- Stfstab
- StFTS
- St_ftsent
- Stoption
- StHFSExtentKey
- StHFSPlusExtentKey
- StHFSExtentDescriptor
- StHFSPlusExtentDescriptor
- StFndrFileInfo
- StFndrDirInfo
- StFndrOpaqueInfo
- StFndrExtendedDirInfo
- StFndrExtendedFileInfo
- StHFSPlusForkData
- StHFSPlusBSDInfo
- StHFSCatalogKey
- StHFSPlusCatalogKey
- StHFSCatalogFolder
- StHFSPlusCatalogFolder
- StHFSCatalogFile
- StHFSPlusCatalogFile
- StHFSCatalogThread
- StHFSPlusCatalogThread
- StHFSPlusAttrForkData
- StHFSPlusAttrExtents
- StHFSPlusAttrData
- StHFSPlusAttrInlineData
- StHFSPlusAttrRecord
- StHFSPlusAttrKey
- StHFSMasterDirectoryBlock
- StHFSPlusVolumeHeader
- StBTreeKeyLimits
- StBTreeKey
- StBTNodeDescriptor
- StBTHeaderRec
- StJournalInfoBlock
- Sthfs_mount_args
- StHFSUniStr255
- Stqelem
- St_OSUnalignedU16
- St_OSUnalignedU32
- St_OSUnalignedU64
- Stfasttrap_instr_t
- Stfasttrap_machtp
- Stmalloc_zone_malloc_options_t@enum malloc_zone_malloc_options_t
- St_malloc_zone_t
- Stmalloc_type_callsite_flags_v0_t@enum malloc_type_callsite_flags_v0_t
- Stmalloc_type_kind_v0_t@enum malloc_type_kind_v0_t
- Stmalloc_type_layout_semantics_v0_t@struct malloc_type_layout_semantics_v0_t
- Stmalloc_type_summary_v0_t@struct malloc_type_summary_v0_t
- Stmalloc_type_descriptor_v0_t@union malloc_type_descriptor_v0_t
- Stvm_range_t
- Stmalloc_statistics_t
- Stmalloc_introspection_t
- Stmstats
- Stbpf_program
- Stbpf_stat
- Stbpf_version
- Stbpf_hdr
- Stbpf_insn
- Stbpf_dltlist
- Stether_header
- Stether_addr
- Starphdr
- Starpreq
- Starpstat
- Stllc
- Stfrmrinfo
- Stifmedia_description
- Stifmibdata
- Stifs_iso_8802_3
- Stdot3Vendors
- Stutun_stats_param
- Stnet_event_data
- Stif_data
- Stif_data64
- Stifqueue
- Stso_nke
- Stsockaddr_ndrv
- Stndrv_demux_desc
- Stndrv_protocol_desc
- Stsadb_msg
- Stsadb_ext
- Stsadb_sa
- Stsadb_lifetime
- Stsadb_address
- Stsadb_key
- Stsadb_ident
- Stsadb_sens
- Stsadb_prop
- Stsadb_comb
- Stsadb_supported
- Stsadb_alg
- Stsadb_spirange
- Stsadb_x_kmprivate
- Stsadb_x_sa2
- Stsadb_x_policy
- Stsadb_x_ipsecrequest
- Stsadb_session_id
- Stsastat
- Stsadb_sastat
- Strt_metrics
- Strtstat
- Strt_msghdr
- Strt_msghdr2
- Strt_msghdr_prelude
- Strt_addrinfo
- Stbootp
- Stvend
- Stnextvend
- Stbootp_packet
- Sticmp6_hdr
- Stmld_hdr
- Stnd_router_solicit
- Stnd_router_advert
- Stnd_neighbor_solicit
- Stnd_neighbor_advert
- Stnd_redirect
- Stnd_opt_hdr
- Stnd_opt_prefix_info
- Stnd_opt_nonce
- Stnd_opt_rd_hdr
- Stnd_opt_mtu
- Stnd_opt_route_info
- Stnd_opt_rdnss
- Stnd_opt_dnssl
- Stnd_opt_dnr
- Stnd_opt_pref64
- Stnd_opt_pvd
- Sticmp6_namelookup
- Sticmp6_nodeinfo
- Stni_reply_fqdn
- Sticmp6_router_renum
- Strr_pco_match
- Strr_pco_use
- Strr_result
- Sticmp6_filter
- Sticmp6errstat
- Sticmp6stat
- Sticmpstat
- Stether_arp
- Stsockaddr_inarp
- Stigmp
- Stigmpv3
- Stigmp_grouprec
- Stigmp_report
- Stigmpstat_v3
- Stigmpstat
- Stin_addr_4in6
- St_inpcb_list_entry
- Stinpcb
- Stxinpcb
- Stinpcb64_list_entry
- Stxinpcb64
- Stxinpgen
- Stin_aliasreq
- Stkev_in_data
- Stkev_in_collision
- Stkev_in_arpfailure
- Stkev_in_arpalive
- Stkev_in_portinuse
- Stip
- Stip_timestamp
- Stipt_timestamp
- Stipt_ta
- Stip6_hdr
- Stip6_hdrctl
- Stip6_ext
- Stip6_hbh
- Stip6_dest
- Stip6_opt
- Stip6_opt_jumbo
- Stip6_opt_nsap
- Stip6_opt_tunnel
- Stip6_opt_router
- Stip6_rthdr
- Stip6_rthdr0
- Stip6_frag
- Sticmp_ra_addr
- Sticmp
- Stih_idseq
- Stih_pmtu
- Stih_rtradv
- Stid_ts
- Stid_ip
- Stipovly
- Stipstat
- Stip_linklocal_stat
- Sttsegqe_head
- Sttcpcb
- Sttcpstat
- Sttcpstat_local
- Stxtcpcb
- Stxtcpcb64
- Sttcpiphdr
- Studphdr
- Studpiphdr
- Studpstat
- Stah
- Stnewah
- Stesp
- Stnewesp
- Stesptail
- Stin6_addrlifetime
- Stin6_addrpolicy
- Stin6_ifstat
- Sticmp6_ifstat
- Stin6_ifreq
- Stin6_aliasreq
- Stin6_prflags
- Stprf_ra
- Stprf_rr
- Stin6_prefixreq
- Stin6_rrenumreq
- Stirr_raflagmask
- Stkev_in6_addrlifetime
- Stkev_in6_data
- Stipcomp
- Stipsecstat
- Stipsec_wake_pkt_info
- Stipsec_wake_pkt_event_data
- Strip6stat
- Stos_clockid_t
- Stos_unfair_lock_s@typedef os_unfair_lock
- St__os_unfair_lock_flags_t@typedef os_unfair_lock_flags_t
- Stacct
- Stacl_perm_t
- Stacl_tag_t
- Stacl_type_t
- Stacl_entry_id_t
- Stacl_flag_t
- Stattrlist
- Stattribute_set
- Stattrreference
- Stdiskextent
- Stvol_capabilities_attr
- Stvol_attributes_attr
- Stfssearchblock
- Stsearchstate
- Stvnode_verify_kind_t
- Stdk_extent_t
- Stdk_firmware_path_t
- Stdk_format_capacity_t
- Stdk_format_capacities_t
- Stdk_synchronize_t
- Stdk_unmap_t
- Stdk_corestorage_info_t
- Stdk_provision_extent_t
- Stdk_provision_status_t
- Stdk_error_description_t
- Steventreq
- Stkevent
- Stkevent64_s
- Stklist
- Stgmonhdr
- Stgmonhdr_64
- Sttostruct
- Sttostruct_64
- Strawarc
- Strawarc_64
- Stgmonparam
- Stgmon_data
- Strawarc_order
- Strawarc_order_64
- Sttchars
- Stltchars
- Stsgttyb
- Stntsid_t
- Stkauth_identity_extlookup
- Stkauth_cache_sizes
- Stkauth_ace
- Stkauth_acl
- Stkauth_filesec
- Stctl_event_data@struct ctl_event_data
- Stctl_info@struct ctl_info
- Stsockaddr_ctl@struct sockaddr_ctl
- Stkern_event_msg@struct kern_event_msg
- Stkev_request@struct kev_request
- Stkev_vendor_code
- Stmbstat
- Stombstat
- Stmb_class_stat
- Stmb_stat
- Ststatfs
- Stvfsstatfs
- Stvfsconf
- Stvfsidctl
- Stvfsquery
- Stvfs_server
- Stnetfs_status
- Stfhandle
- Stgraftdmg_type_t
- Stcryptex_auth_type_t
- Stmsgbuf
- Stnp_uid_t
- Stnetwork_port_t
- Stpipebuf
- Stextern_proc
- Stproc_bsdinfo
- Stproc_bsdshortinfo
- Stproc_taskinfo
- Stproc_taskallinfo
- Stproc_threadinfo
- Stproc_regioninfo
- Stproc_workqueueinfo
- Stproc_fileinfo
- Stproc_exitreasonbasicinfo
- Stproc_exitreasoninfo
- Stvinfo_stat
- Stvnode_info
- Stvnode_info_path
- Stvnode_fdinfo
- Stvnode_fdinfowithpath
- Stproc_regionwithpathinfo
- Stproc_regionpath
- Stproc_vnodepathinfo
- Stproc_threadwithpathinfo
- Stproc_archinfo
- Stin4in6_addr
- Stin_sockinfo
- Sttcp_sockinfo
- Stun_sockinfo
- Stndrv_info
- Stkern_event_info
- Stkern_ctl_info
- Stvsock_sockinfo
- Stsockbuf_info
- Stsocket_info
- Stsocket_fdinfo
- Stpsem_info
- Stpsem_fdinfo
- Stpshm_info
- Stpshm_fdinfo
- Stpipe_info
- Stpipe_fdinfo
- Stkqueue_info
- Stkqueue_dyninfo
- Stkqueue_fdinfo
- Stappletalk_info
- Stappletalk_fdinfo
- Stproc_fdinfo
- Stproc_fileportinfo
- Stproc_channel_info
- Stchannel_fdinfo
- Stdqfilehdr
- Stdqblk
- Strb_tree_ops_t
- Strb_node
- Strb_tree
- Stpanic_with_data_flags
- Stpstats
- Stuprof
- Stsbuf
- Stxsockbuf
- Stxsocket
- Stxsocket64
- Stso_tracker_action
- Stso_tracker_attribute
- Stsockaddr_sys
- Stctlname
- St_pcred
- St_ucred
- Stkinfo_proc
- Steproc
- Stxsw_usage
- Stloadavg
- Sttimeb
- Stspeedtab
- Stttychars
- Stwinsize
- Stxucred
- St_unpcb_list_entry
- Stxunpgen
- Stuser
- Stvmspace
- Stvtype
- Stvtagtype
- Stio_compression_stats
- Stiocs_store_buffer_entry
- StDarwinBooleaniOS 7.0+The `Boolean` type declared in MacTypes.h and used throughout Core
Enumerations 5
- Enipc_info_object_type_t@brief
- Envirtual_memory_guard_exception_code_t
- Enmach_vm_range_flavor_t@enum mach_vm_range_flavor_t
- Enmach_vm_range_tag_t@enum mach_vm_range_tag_t
- EnMachErrorCodeiOS 7.0+Enumeration describing Mach error codes.
Type Aliases 768
- Tycopyfile_state_t
- Tycopyfile_flags_t
- Tycopyfile_callback_t
- Tyxattr_operation_intent_t
- Tyxattr_flags_t
- TyOSErrHigher level basic types
- TyOSStatus
- TyOptionBits
- TyFourCharCode
- TyOSType
- TyUTF32Char
- TyUniChar
- TyUTF16Char
- TyUTF8Char
- Tyvoucher_mach_msg_state_t@typedef voucher_mach_msg_state_t
- Tyalarm_type_t
Show 752 more
- Tysleep_type_t
- Tyclock_id_t
- Tyclock_flavor_t
- Tyclock_attr_t
- Tyclock_res_t
- Tymach_timespec_t
- Tyhash_info_bucket_t
- Tyhash_info_bucket_array_t
- Tyipc_info_space_t
- Tyipc_info_space_basic_t
- Tyipc_info_name_t
- Tyipc_info_name_array_t
- Tyipc_info_tree_name_t
- Tyipc_info_tree_name_array_t
- Tyipc_info_port_t
- Tyexception_handler_info_array_t
- Tylockgroup_info_t
- Tylockgroup_info_array_t
- Tysymtab_name_t
- Tykobject_description_t
- Typage_address_array_t
- Tymach_vm_info_region_t
- Tyvm_info_region_64_t
- Tyvm_info_region_t
- Tyvm_info_object_t
- Tyvm_info_object_array_t
- Tyzone_name_t
- Tyzone_name_array_t
- Tyzone_info_t
- Tyzone_info_array_t
- Tymach_zone_name_t
- Tymach_zone_name_array_t
- Tymach_zone_info_t
- Tymach_zone_info_array_t
- Tytask_zone_info_t
- Tytask_zone_info_array_t
- Tymach_memory_info_t
- Tymach_memory_info_array_t
- Tyzone_btrecord_t
- Tyzone_btrecord_array_t
- Tydyld_kernel_image_info_t
- Tydyld_kernel_process_info_t
- Tydyld_kernel_image_info_array_t
- Tymach_error_t
- Tymach_error_fn_t
- Tyexception_type_t
- Tyexception_data_type_t
- Tymach_exception_data_type_t
- Tyexception_behavior_t
- Tyexception_data_t
- Tymach_exception_data_t
- Tyexception_mask_t
- Tyexception_mask_array_t
- Tyexception_behavior_array_t
- Tyexception_flavor_array_t
- Tyexception_port_array_t
- Tyexception_port_info_array_t
- Tymach_exception_code_t
- Tymach_exception_subcode_t
- Tyhost_info_t
- Tyhost_info64_t
- Tyhost_info_data_t
- Tykernel_version_t
- Tykernel_boot_info_t
- Tyhost_flavor_t
- Tyhost_can_has_debugger_info_data_t
- Tyhost_can_has_debugger_info_t
- Tyhost_basic_info_data_t
- Tyhost_basic_info_t
- Tyhost_sched_info_data_t
- Tyhost_sched_info_t
- Tykernel_resource_sizes_data_t
- Tykernel_resource_sizes_t
- Tyhost_priority_info_data_t
- Tyhost_priority_info_t
- Tyhost_load_info_data_t
- Tyhost_load_info_t
- Tyhost_purgable_info_data_t
- Tyhost_purgable_info_t
- Tyhost_cpu_load_info_data_t
- Tyhost_cpu_load_info_t
- Tyhost_preferred_user_arch_data_t
- Tyhost_preferred_user_arch_t
- Tyhv_return_t
- Tyhv_memory_flags_t
- Tykmod_t
- Tykmod_start_func_t
- Tykmod_stop_func_t
- Tykmod_reference_t
- Tykmod_info_tWarning: Any changes to the kmod_info structure affect the
- Tykmod_info_32_v1_t
- Tykmod_info_64_v1_t
- Tykmod_args_tThese 3 should be dropped but they're referenced by MIG declarations.
- Tykmod_control_flavor_t
- Tykmod_info_array_t
- Tymach_timebase_info_t
- Tymach_timebase_info_data_t
- Tytask_t
- Tytask_name_t
- Tytask_policy_set_t
- Tytask_policy_get_t
- Tytask_inspect_t
- Tytask_read_t
- Tytask_suspension_token_t
- Tythread_t
- Tythread_act_t
- Tythread_inspect_t
- Tythread_read_t
- Tythread_suspension_token_t
- Tyipc_space_t
- Tyipc_space_read_t
- Tyipc_space_inspect_t
- Tycoalition_t
- Tyhost_t
- Tyhost_priv_t
- Tyhost_security_t
- Typrocessor_t
- Typrocessor_set_t
- Typrocessor_set_control_t
- Tysemaphore_t
- Tylock_set_t
- Tyledger_t
- Tyalarm_t
- Tyclock_serv_t
- Tyclock_ctrl_t
- Tyarcade_register_t
- Tyipc_eventlink_t
- Tyeventlink_port_pair_t
- Tytask_id_token_t
- Tykcdata_object_t
- Typrocessor_set_name_t
- Tyclock_reply_t
- Tybootstrap_t
- Tymem_entry_name_port_t
- Tyexception_handler_t
- Tyexception_handler_array_t
- Tyvm_task_entry_t
- Tyio_main_t
- TyUNDServerRef
- Tymach_eventlink_t
- Tyexception_handler_info_t
- Tytask_array_t
- Tythread_array_t
- Typrocessor_set_array_t
- Typrocessor_set_name_array_t
- Typrocessor_array_t
- Tythread_act_array_t
- Tyledger_array_t
- Tytask_port_t
- Tytask_port_array_t
- Tythread_port_t
- Tythread_port_array_t
- Tyipc_space_port_t
- Tyhost_name_t
- Tyhost_name_port_t
- Typrocessor_set_port_t
- Typrocessor_set_name_port_t
- Typrocessor_set_name_port_array_t
- Typrocessor_set_control_port_t
- Typrocessor_port_t
- Typrocessor_port_array_t
- Tythread_act_port_t
- Tythread_act_port_array_t
- Tysemaphore_port_t
- Tylock_set_port_t
- Tyledger_port_t
- Tyledger_port_array_t
- Tyalarm_port_t
- Tyclock_serv_port_t
- Tyclock_ctrl_port_t
- Tyexception_port_t
- Tyexception_port_arrary_t
- Tyvfs_path_t
- Tymach_task_flavor_t
- Tymach_thread_flavor_t
- Tyledger_item_t
- Tyledger_entry_id_t
- Tyledger_amount_t
- Tyemulation_vector_t
- Tyuser_subsystem_t
- Tylabelstr_t
- Tymach_voucher_t
- Tymach_voucher_name_t
- Tymach_voucher_name_array_t
- Tyipc_voucher_t
- Tymach_voucher_selector_t
- Tymach_voucher_attr_key_t
- Tymach_voucher_attr_key_array_t
- Tymach_voucher_attr_content_t
- Tymach_voucher_attr_content_size_t
- Tymach_voucher_attr_command_t
- Tymach_voucher_attr_recipe_command_t
- Tymach_voucher_attr_recipe_command_array_t
- Tymach_voucher_attr_recipe_data_t
- Tymach_voucher_attr_recipe_t
- Tymach_voucher_attr_recipe_size_t
- Tymach_voucher_attr_raw_recipe_t
- Tymach_voucher_attr_raw_recipe_array_t
- Tymach_voucher_attr_raw_recipe_size_t
- Tymach_voucher_attr_raw_recipe_array_size_t
- Tymach_voucher_attr_manager_t
- Tymach_voucher_attr_control_t
- Tyipc_voucher_attr_manager_t
- Tyipc_voucher_attr_control_t
- Tymach_voucher_attr_value_handle_t
- Tymach_voucher_attr_value_handle_array_t
- Tymach_voucher_attr_value_handle_array_size_t
- Tymach_voucher_attr_value_reference_t
- Tymach_voucher_attr_value_flags_t
- Tymach_voucher_attr_control_flags_t
- Tymach_voucher_attr_importance_refs
- Tycpu_type_t
- Tycpu_subtype_t
- Tycpu_threadtype_t
- Tyboolean_t
- Tykern_return_t
- Typrocessor_cpu_stat_data_t
- Typrocessor_cpu_stat_t
- Typrocessor_cpu_stat64_data_t
- Typrocessor_cpu_stat64_t
- Tyarm_state_hdr_t
- Tyarm_thread_state_t
- Tyarm_thread_state32_t
- Tyarm_thread_state64_t
- Tyarm_unified_thread_state_t
- Tyarm_vfp_state_t
- Tyarm_neon_state_t
- Tyarm_neon_state32_t
- Tyarm_neon_state64_t
- Tyarm_exception_state_t
- Tyarm_exception_state32_t
- Tyarm_exception_state64_t
- Tyarm_exception_state64_v2_t
- Tyarm_debug_state32_t
- Tyarm_debug_state64_t
- Tyarm_pagein_state_t
- Tyarm_sme_state_t
- Tyarm_sve_z_state_t
- Tyarm_sve_p_state_t
- Tyarm_sme_za_state_t
- Tyarm_sme2_state_t
- Tyarm_debug_state_t
- Tynatural_t
- Tyinteger_t
- Tyvm_offset_t
- Tyvm_size_t
- Tymach_vm_address_t
- Tymach_vm_offset_t
- Tymach_vm_size_t
- Tyvm_map_offset_t
- Tyvm_map_address_t
- Tyvm_map_size_t
- Tyvm32_offset_t
- Tyvm32_address_t
- Tyvm32_size_t
- Tymach_port_context_t
- Tymemory_object_offset_t
- Tymemory_object_size_t
- Tymemory_object_cluster_size_t
- Tymemory_object_fault_info_t
- Tyvm_object_id_t
- Tymemory_object_t
- Tymemory_object_control_t
- Tymemory_object_array_t
- Tymemory_object_name_t
- Tymemory_object_default_t
- Tymemory_object_copy_strategy_t
- Tymemory_object_return_t
- Tymemory_object_info_t
- Tymemory_object_flavor_t
- Tymemory_object_info_data_t
- Tymemory_object_behave_info_t
- Tymemory_object_behave_info_data_t
- Tymemory_object_perf_info_t
- Tymemory_object_perf_info_data_t
- Tymemory_object_attr_info_t
- Tymemory_object_attr_info_data_t
- Tymach_msg_timeout_t
- Tymach_msg_bits_t
- Tymach_msg_size_t
- Tymach_msg_id_t
- Tymach_msg_priority_t
- Tymach_msg_type_name_t
- Tymach_msg_copy_options_t
- Tymach_msg_guard_flags_t
- Tymach_msg_descriptor_type_t
- Tymach_msg_trailer_type_t
- Tymach_msg_trailer_size_t
- Tymach_msg_trailer_info_t
- Tymach_msg_filter_id
- Tymach_msg_max_trailer_t
- Tymach_msg_format_0_trailer_t
- Tymach_msg_options_t
- Tymach_msg_type_size_t
- Tymach_msg_type_number_t
- Tymach_msg_option_t
- Tymach_msg_return_t
- Tymig_stub_routine_t
- Tymig_routine_t
- Tymig_server_routine_t
- Tymig_impl_routine_t
- Tyroutine_arg_descriptor
- Tyroutine_arg_descriptor_t
- Tymig_routine_arg_descriptor_t
- Tyroutine_descriptor_t
- Tymig_routine_descriptor
- Tymig_routine_descriptor_t
- Tymig_subsystem_t
- Tymig_symtab_t
- Tynotify_port_t
- Typolicy_t
- Typolicy_info_t
- Typolicy_base_t
- Typolicy_limit_t
- Typolicy_timeshare_base_t
- Typolicy_timeshare_limit_t
- Typolicy_timeshare_info_t
- Typolicy_timeshare_base_data_t
- Typolicy_timeshare_limit_data_t
- Typolicy_timeshare_info_data_t
- Typolicy_rr_base_t
- Typolicy_rr_limit_t
- Typolicy_rr_info_t
- Typolicy_rr_base_data_t
- Typolicy_rr_limit_data_t
- Typolicy_rr_info_data_t
- Typolicy_fifo_base_t
- Typolicy_fifo_limit_t
- Typolicy_fifo_info_t
- Typolicy_fifo_base_data_t
- Typolicy_fifo_limit_data_t
- Typolicy_fifo_info_data_t
- Typolicy_base_data_t
- Typolicy_limit_data_t
- Typolicy_info_data_t
- Tymach_port_name_t
- Tymach_port_name_array_t
- Tymach_port_array_t
- Tymach_port_right_t
- Tymach_port_type_t
- Tymach_port_type_array_t
- Tymach_port_urefs_t
- Tymach_port_delta_t
- Tymach_port_seqno_t
- Tymach_port_mscount_t
- Tymach_port_msgcount_t
- Tymach_port_rights_t
- Tymach_port_srights_t
- Tymach_port_status_t
- Tymach_port_limits_t
- Tymach_port_info_ext_t
- Tymach_port_guard_info_t
- Tymach_port_info_t
- Tymach_port_flavor_t
- Tymach_port_qos_t
- Tymach_service_port_info_data_t
- Tymach_service_port_info_t
- Tymach_port_options_t
- Tymach_port_options_ptr_t
- Typrocessor_info_t
- Typrocessor_info_array_t
- Typrocessor_info_data_t
- Typrocessor_set_info_t
- Typrocessor_set_info_data_t
- Typrocessor_flavor_t
- Typrocessor_basic_info_data_t
- Typrocessor_basic_info_t
- Typrocessor_cpu_load_info_data_t
- Typrocessor_cpu_load_info_t
- Typrocessor_set_flavor_t
- Typrocessor_set_basic_info_data_t
- Typrocessor_set_basic_info_t
- Typrocessor_set_load_info_data_t
- Typrocessor_set_load_info_t
- Tyroutine_arg_type
- Tyroutine_arg_offset
- Tyroutine_arg_size
- Tyrpc_routine_arg_descriptor_t
- Tyrpc_routine_descriptor_t
- Tyrpc_subsystem_t
- Tyshared_file_mapping_slide_np_t
- Tysync_policy_t
- Tytask_flavor_t
- Tytask_info_t
- Tytask_info_data_t
- Tytask_basic_info_32_data_t
- Tytask_basic_info_32_t
- Tytask_basic_info_64_data_t
- Tytask_basic_info_64_t
- Tytask_basic_info_data_t
- Tytask_basic_info_t
- Tytask_events_info_data_t
- Tytask_events_info_t
- Tytask_thread_times_info_data_t
- Tytask_thread_times_info_t
- Tytask_absolutetime_info_data_t
- Tytask_absolutetime_info_t
- Tytask_kernelmemory_info_data_t
- Tytask_kernelmemory_info_t
- Tytask_affinity_tag_info_data_t
- Tytask_affinity_tag_info_t
- Tytask_dyld_info_data_t
- Tytask_dyld_info_t
- Tytask_basic_info_64_2_data_t
- Tytask_basic_info_64_2_t
- Tytask_extmod_info_data_t
- Tytask_extmod_info_t
- Tymach_task_basic_info_data_t
- Tymach_task_basic_info_t
- Tytask_power_info_data_t
- Tytask_power_info_t
- Tytask_vm_info_data_t
- Tytask_vm_info_t
- Tytask_purgable_info_t
- Tytask_trace_memory_info_data_t
- Tytask_trace_memory_info_t
- Tytask_wait_state_info_data_t
- Tytask_wait_state_info_t
- Tygpu_energy_data_t
- Tytask_power_info_v2_data_t
- Tytask_power_info_v2_t
- Tytask_flags_info_data_t
- Tytask_flags_info_t
- Tytask_security_config_info_t
- Tytask_ipc_space_policy_info_t
- Tytask_vm_shared_cache_info_data_t
- Tytask_vm_shared_cache_info_t
- Tytask_shared_region_info_data_t
- Tytask_shared_region_info_t
- Tytask_exc_guard_behavior_t
- Tytask_corpse_forking_behavior_t
- Tytask_inspect_flavor_t
- Tytask_inspect_basic_counts_data_t
- Tytask_inspect_basic_counts_t
- Tytask_inspect_info_t
- Tytask_policy_flavor_t
- Tytask_policy_t
- Tytask_role_t
- Tytask_category_policy_data_t
- Tytask_category_policy_t
- Tytask_latency_qos_t
- Tytask_throughput_qos_t
- Tytask_qos_policy_t
- Tytask_special_port_t
- Tythread_flavor_t
- Tythread_info_t
- Tythread_info_data_t
- Tythread_basic_info_data_t
- Tythread_basic_info_t
- Tythread_identifier_info_data_t
- Tythread_identifier_info_t
- Tythread_extended_info_data_t
- Tythread_extended_info_t
- Tyio_stat_info_t
- Tythread_policy_flavor_t
- Tythread_policy_t
- Tythread_standard_policy_data_t
- Tythread_standard_policy_t
- Tythread_extended_policy_data_t
- Tythread_extended_policy_t
- Tythread_time_constraint_policy_data_t
- Tythread_time_constraint_policy_t
- Tythread_precedence_policy_data_t
- Tythread_precedence_policy_t
- Tythread_affinity_policy_data_t
- Tythread_affinity_policy_t
- Tythread_background_policy_data_t
- Tythread_background_policy_t
- Tythread_latency_qos_t
- Tythread_latency_qos_policy_data_t
- Tythread_latency_qos_policy_t
- Tythread_throughput_qos_t
- Tythread_throughput_qos_policy_data_t
- Tythread_throughput_qos_policy_t
- Tythread_state_t
- Tythread_state_data_t
- Tythread_state_flavor_t
- Tythread_state_flavor_array_t
- Tytime_value_t
- Tyvm_machine_attribute_t
- Tyvm_machine_attribute_val_t
- Tyvm_behavior_t
- Tyvm_inherit_t
- Tyvm_prot_t
- Tyvm_purgable_t
- Tyvm32_object_id_t
- Tyvm_region_info_t
- Tyvm_region_info_64_t
- Tyvm_region_recurse_info_t
- Tyvm_region_recurse_info_64_t
- Tyvm_region_flavor_t
- Tyvm_region_info_data_t
- Tyvm_region_basic_info_64_t
- Tyvm_region_basic_info_data_64_t
- Tyvm_region_basic_info_t
- Tyvm_region_basic_info_data_t
- Tyvm_region_extended_info_t
- Tyvm_region_extended_info_data_t
- Tyvm_region_top_info_t
- Tyvm_region_top_info_data_t
- Tyvm_region_submap_info_t
- Tyvm_region_submap_info_data_t
- Tyvm_region_submap_info_64_t
- Tyvm_region_submap_info_data_64_t
- Tyvm_region_submap_short_info_64_t
- Tyvm_region_submap_short_info_data_64_t
- Tymach_vm_read_entry_t
- Tyvm_read_entry_t
- Tyvm_page_info_t
- Tyvm_page_info_flavor_t
- Tyvm_page_info_basic_t
- Tyvm_page_info_basic_data_t
- Tyvm_page_info_extended_data_t
- Tyvm_page_info_extended_t
- Tyvm_statistics_t
- Tyvm_statistics_data_t
- Tyvm_statistics64_t
- Tyvm_statistics64_data_t
- Tyvm_extmod_statistics_t
- Tyvm_extmod_statistics_data_t
- Tyvm_purgeable_stat_t
- Tyvm_purgeable_info_t
- Tyvm_page_disposition_t
- Tyvm_sync_t
- Typointer_t
- Tyvm_address_t
- Tyaddr64_t
- Tyreg64_t
- Typpnum_t
- Tyvm_map_t
- Tyvm_map_read_t
- Tyvm_map_inspect_t
- Tyupl_t
- Tyvm_named_entry_t
- Tymach_vm_offset_list_t
- Tyvm_object_offset_t
- Tyvm_object_size_t
- Tymach_vm_range_t@typedef mach_vm_range_t
- Tymach_vm_range_recipe_t
- Tymach_vm_range_recipes_raw_t
- TyDl_infoStructure filled in by dladdr().
- TyDl_info_t
- Tyfsignatures_t
- Tyfsupplement_t
- Tyfchecklv_t
- Tyfgetsigsinfo_t
- Tyfstore_t
- Tyfpunchhole_t
- Tyftrimactivefile_t
- Tyfspecread_t
- Tyfattributiontag_t
- Ty__iconv_bool
- Tyiconv_t
- Tyiconv_unicode_char_hook
- Tyiconv_wide_char_hook
- Tyiconv_unicode_mb_to_uc_fallback
- Tyiconv_unicode_uc_to_mb_fallback
- Tyiconv_wchar_mb_to_wc_fallback
- Tyiconv_wchar_wc_to_mb_fallback
- Tyin6_addr_t
- Tytcp_seq
- Tytcp_cc
- Tynfds_t
- Tyregoff_t
- TyENTRY
- Typosix_spawnattr_t
- Typosix_spawn_file_actions_t
- Tymsgqnum_t
- Tymsglen_t
- Tysemun_t
- Tyshmatt_t
- Tysae_associd_t
- Tysae_connid_t
- Tysa_endpoints_t
- Tyfilesec_t
- Tyfsid_t
- Tyfsobj_id_t
- Tysecure_boot_cryptex_args_t
- Tygraftdmg_args_un
- Tymount_t
- Tysa_family_t
- Tysocklen_t
- Tyucontext64_t
- Tyvnode_t
- Tyvsock_gen_t
- Tytcflag_t
- Tycc_t
- Tyspeed_t
- TyNXSwappedFloat
- TyNXSwappedDouble
- Tybank_action_t
- Tyau_id_t
- Tyau_asid_t
- Tyau_event_t
- Tyau_emod_t
- Tyau_class_t
- Tyau_asflgs_t
- Tyau_ctlmode_t
- Tyau_tid_t
- Tyau_tid_addr_t
- Tyau_mask_t
- Tyauditinfo_t
- Tyauditinfo_addr_t
- Tyauditpinfo_t
- Tyauditpinfo_addr_t
- Tyau_session_t
- Tyau_expire_after_t
- Tytoken_t
- Tyau_qctrl_t
- Tyau_stat_t
- Tyau_fstat_t
- Tyau_evclass_map_t
- Tyaudit_filter_attach_t
- Tyaudit_filter_reinit_t
- Tyaudit_filter_record_t
- Tyaudit_filter_rawrecord_t
- Tyaudit_filter_detach_t
- Tyau_sdev_handle_t
- Tyau_event_ent_t
- Tyau_class_ent_t
- Tyau_user_ent_t
- Tyau_tid32_t
- Tyau_tid64_t
- Tyau_tidaddr32_t
- Tyau_tidaddr64_t
- Tytokenstr_t
- Tyio_buf_ptr_t
- Tyio_name_t
- Tyio_string_t
- Tyio_string_inband_t
- Tyio_struct_inband_t
- Tyio_user_scalar_t
- Tyio_user_reference_t
- Tyio_scalar_inband_t
- Tyio_async_ref_t
- Tyio_scalar_inband64_t
- Tyio_async_ref64_t
- Tyio_object_t
- TyFTSENT
- TyHFSExtentRecord
- TyHFSPlusExtentRecord
- TyConstHFSUniStr255Param
- TyOSAtomic_int64_aligned64_t
- TyOSSpinLock@abstract Data type for a spinlock.
- Tyfasttrap_machtp_t
- Tymalloc_zone_t
- Tymemory_reader_t
- Tyvm_range_recorder_t
- Tybpf_int32
- Tybpf_u_int32
- Tyether_header_t
- Tyether_addr_t
- Tyinp_gen_t
- Tyn_short
- Tyn_long
- Tyn_time
- Tyos_function_t
- Tyos_block_t@typedef os_block_t
- Tyos_unfair_lock@typedef os_unfair_lock
- Tyos_unfair_lock_t@typedef os_unfair_lock
- Tycomp_t
- Tyacl_t
- Tyacl_entry_t
- Tyacl_permset_t
- Tyacl_flagset_t
- Tyacl_permset_mask_t
- Tytext_encoding_t
- Tyfsobj_type_t
- Tyfsobj_tag_t
- Tyfsfile_type_t
- Tyfsvolid_t
- Tyattrgroup_t
- Tyattribute_set_t
- Tyattrreference_t
- Tyextentrecord
- Tyvol_capabilities_set_t
- Tyvol_capabilities_attr_t
- Tyvol_attributes_attr_t
- Tyer_t
- Tyfileport_t
- Tygmonhdr_t
- Tytostruct_t
- Tyrawarc_t
- Tygmon_data_t
- Tyrawarc_order_t
- Tykauth_ace_rights_t
- Tykauth_ace_t
- Tykauth_acl_t
- Tykauth_filesec_t
- Tydaddr64_t
- Tybuf_t
- Tyfile_t
- Typroc_t
- Typroc_ident_t
- Tyuio_t
- Tyvfs_context_t
- Tyvfstable_t
- Tyifnet_t
- Tymbuf_t
- Typkthdr_t
- Tysocket_t
- Tysockopt_t
- Tyifaddr_t
- Tyifmultiaddr_t
- Tyinterface_filter_t
- Tyroute_t
- Tyif_clone_t
- Tybufattr_t
- Tykauth_action_t
- Tymb_class_stat_t
- Tymb_stat_t
- Tyfhandle_t
- Tynetaddr_t
- Typroc_info_udata_t
- Tyrbto_compare_nodes_fn
- Tyrbto_compare_key_fn
- Tyrb_node_t
- Tyrb_tree_t
- Tysem_t
- Tyso_gen_t
- Tykauth_cred_t
- Typosix_cred_t
- Tyunp_gen_t
- Tyio_compression_stats_t
- Tyuuid_string_t
- TySemaphore
- Ty__Float16x4_t
- Ty__Float16x8_t
- Ty__Float32x2_t
- Ty__Float32x4_t
- Ty__Float64x2_t
- Ty__Int16x4_t
- Ty__Int16x8_t
- Ty__Int32x2_t
- Ty__Int32x4_t
- Ty__Int64x2_t
- Ty__Int8x16_t
- Ty__Int8x8_t
- Ty__NSConstantString
- Ty__Poly16x4_t
- Ty__Poly16x8_t
- Ty__Poly64x2_t
- Ty__Poly8x16_t
- Ty__Poly8x8_t
- Ty__Uint16x4_t
- Ty__Uint16x8_t
- Ty__Uint32x2_t
- Ty__Uint32x4_t
- Ty__Uint64x2_t
- Ty__Uint8x16_t
- Ty__Uint8x8_t
- Ty__builtin_ms_va_list