TechnologiesLow-level, Kernel & Legacy

Darwin

iOSmacOStvOSwatchOSvisionOS

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.

  • St
    ProcessSerialNumber
    Process Manager type ProcessSerialNumber (previously in Processes.h)
  • St
    mach_timespec
    A 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.

  • St
    host_basic_info
    A structure reporting basic information about the host, such as CPU count and memory size.
  • St
    host_sched_info
    A structure reporting the host's scheduler timing parameters.
  • St
    host_priority_info
    A structure reporting the host's thread priority ranges.
  • St
    host_load_info
    A structure reporting the host's load and mach-factor averages.
  • St
    host_cpu_load_info
    A structure reporting aggregate CPU tick counts across run states for the host.
  • St
    host_preferred_user_arch
    A structure reporting the host's preferred user-space CPU architecture.
  • St
    host_can_has_debugger_info
    A structure reporting whether a debugger may attach to the host.
  • St
    kernel_resource_sizes
    A 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.

  • St
    vm_info_region
    A structure reporting introspection details about a virtual memory region.
  • St
    vm_info_region_64
    A structure reporting 64-bit introspection details about a virtual memory region.
  • St
    mach_vm_info_region
    A structure reporting introspection details about a virtual memory region.
  • St
    vm_info_object
    A structure reporting introspection details about a virtual memory object.
  • St
    zone_name
    A structure holding the name of a kernel memory allocation zone.
  • St
    zone_info
    A structure reporting statistics for a kernel memory allocation zone.
  • St
    mach_zone_name
    A structure holding the name of a kernel memory zone for Mach introspection.
  • St
    mach_zone_info_data
    A structure reporting detailed statistics for a kernel memory zone.
  • St
    task_zone_info_data
    A structure reporting per-task statistics for a kernel memory zone.
  • St
    mach_memory_info
    A structure reporting introspection details about a region of kernel memory.
  • St
    zone_btrecord
    A structure recording a backtrace associated with a zone allocation.
  • St
    lockgroup_info
    A structure reporting statistics for a kernel lock group.
  • St
    hash_info_bucket
    A 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.

  • St
    ipc_info_space
    A structure reporting introspection details about a task's IPC name space.
  • St
    ipc_info_space_basic
    A structure reporting basic introspection details about a task's IPC name space.
  • St
    ipc_info_name
    A structure describing a single entry in a task's IPC name space.
  • St
    ipc_info_tree_name
    A structure describing an IPC name space entry within a splay-tree representation.
  • St
    ipc_info_port
    A structure reporting introspection details about a Mach port.

Kernel Extensions and Modules 4

Structures that describe loaded kernel modules and their dependencies.

  • St
    kmod_info
    Warning: Any changes to the kmod_info structure affect the
  • St
    kmod_info_32_v1
    A 32-bit layout of the structure describing a loaded kernel module.
  • St
    kmod_info_64_v1
    A 64-bit layout of the structure describing a loaded kernel module.
  • St
    kmod_reference
    A 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.

  • St
    dyld_kernel_image_info
    A structure describing a loaded Mach-O image as tracked by the kernel's dynamic linker.
  • St
    dyld_kernel_process_info
    A structure describing a process's dynamic linker state as tracked by the kernel.
  • St
    mach_core_details
    A structure describing a region recorded in a Mach kernel core file.
  • St
    mach_core_details_v2
    A version 2 structure describing a region recorded in a Mach kernel core file.
  • St
    mach_core_fileheader
    A structure describing the header of a Mach kernel core file.
  • St
    mach_core_fileheader_base
    A structure describing the common base of a Mach kernel core file header.
  • St
    mach_core_fileheader_v2
    A 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.

  • St
    hv_data_abort_notification_t
    @typedef hv_data_abort_notification_t
  • St
    hv_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_t
    The Mach message request structure for reading a clock's current time.
  • St
    __Request__clock_get_attributes_t
    The Mach message request structure for querying a clock's attributes.
  • St
    __Request__clock_alarm_t
    The Mach message request structure for setting an alarm on a clock.
  • St
    __RequestUnion__clock_subsystem
    A union of all request messages in the clock subsystem.
  • St
    __Reply__clock_get_time_t
    The Mach message reply structure returning a clock's current time.
  • St
    __Reply__clock_get_attributes_t
    The Mach message reply structure returning a clock's attributes.
  • St
    __Reply__clock_alarm_t
    The Mach message reply structure acknowledging a clock alarm request.
  • St
    __ReplyUnion__clock_subsystem
    A union of all reply messages in the clock subsystem.
  • St
    __Request__clock_set_time_t
    The Mach message request structure for setting a privileged clock's time.
  • St
    __Request__clock_set_attributes_t
    The Mach message request structure for setting a privileged clock's attributes.
  • St
    __RequestUnion__clock_priv_subsystem
    A union of all request messages in the privileged clock subsystem.
  • St
    __Reply__clock_set_time_t
    The Mach message reply structure acknowledging a privileged clock time change.
  • St
    __Reply__clock_set_attributes_t
    The Mach message reply structure acknowledging a privileged clock attribute change.
  • St
    __ReplyUnion__clock_priv_subsystem
    A union of all reply messages in the privileged clock subsystem.
  • St
    __Request__clock_alarm_reply_t
    The Mach message request structure delivering a clock alarm callback.
  • St
    __RequestUnion__clock_reply_subsystem
    A union of all request messages in the clock reply subsystem.
  • St
    __Reply__clock_alarm_reply_t
    The Mach message reply structure acknowledging a clock alarm callback.
  • St
    __ReplyUnion__clock_reply_subsystem
    A 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_t
    The Mach message request structure that raises an exception to a handler port.
  • St
    __Request__exception_raise_state_t
    The Mach message request structure that raises an exception carrying thread state.
  • St
    __Request__exception_raise_state_identity_t
    The Mach message request structure that raises an exception carrying thread state and identity.
  • St
    __RequestUnion__exc_subsystem
    A union of all request messages in the exception subsystem.
  • St
    __Reply__exception_raise_t
    The Mach message reply structure returned by an exception handler.
  • St
    __Reply__exception_raise_state_t
    The Mach message reply structure returning updated thread state from an exception handler.
  • St
    __Reply__exception_raise_state_identity_t
    The Mach message reply structure returning updated thread state and identity from an exception handler.
  • St
    __ReplyUnion__exc_subsystem
    A 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_t
    The Mach message request structure for reading host information of a given flavor.
  • St
    __Request__host_kernel_version_t
    The Mach message request structure for reading the kernel version string.
  • St
    __Request___host_page_size_t
    The Mach message request structure for reading the host's page size.
  • St
    __Request__mach_memory_object_memory_entry_t
    The Mach message request structure for creating a memory entry for a memory object.
  • St
    __Request__host_processor_info_t
    The Mach message request structure for reading per-processor information.
  • St
    __Request__host_get_io_main_t
    The Mach message request structure for obtaining the I/O Kit main port.
  • St
    __Request__host_get_clock_service_t
    The Mach message request structure for obtaining a clock service port.
  • St
    __Request__kmod_get_info_t
    The Mach message request structure for reading information about loaded kernel modules.
  • St
    __Request__host_virtual_physical_table_info_t
    The Mach message request structure for reading the virtual-to-physical mapping table.
  • St
    __Request__processor_set_default_t
    The Mach message request structure for obtaining the default processor set.
  • St
    __Request__processor_set_create_t
    The Mach message request structure for creating a new processor set.
  • St
    __Request__mach_memory_object_memory_entry_64_t
    The Mach message request structure for creating a 64-bit memory entry for a memory object.
  • St
    __Request__host_statistics_t
    The Mach message request structure for reading host statistics of a given flavor.
  • St
    __Request__host_request_notification_t
    The Mach message request structure for requesting notification of a host event.
  • St
    __Request__host_lockgroup_info_t
    The Mach message request structure for reading kernel lock group statistics.
  • St
    __Request__host_statistics64_t
    The Mach message request structure for reading 64-bit host statistics.
  • St
    __Request__mach_zone_info_t
    The Mach message request structure for reading kernel memory zone statistics.
  • St
    __Request__host_create_mach_voucher_t
    The Mach message request structure for creating a Mach voucher on the host.
  • St
    __Request__host_register_mach_voucher_attr_manager_t
    The Mach message request structure for registering a Mach voucher attribute manager.
  • St
    __Request__host_register_well_known_mach_voucher_attr_manager_t
    The Mach message request structure for registering a well-known Mach voucher attribute manager.
  • St
    __Request__host_set_atm_diagnostic_flag_t
    The Mach message request structure for setting the host's ATM diagnostic flag.
  • St
    __Request__host_get_atm_diagnostic_flag_t
    The Mach message request structure for reading the host's ATM diagnostic flag.
  • St
    __Request__mach_memory_info_t
    The Mach message request structure for reading kernel memory introspection data.
  • St
    __Request__host_set_multiuser_config_flags_t
    The Mach message request structure for setting the host's multiuser configuration flags.
  • St
    __Request__host_get_multiuser_config_flags_t
    The Mach message request structure for reading the host's multiuser configuration flags.
  • St
    __Request__host_check_multiuser_mode_t
    The Mach message request structure for checking whether the host is in multiuser mode.
  • St
    __Request__mach_zone_info_for_zone_t
    The Mach message request structure for reading statistics for a specific memory zone.
  • St
    __Request__mach_memory_info_redacted_t
    The Mach message request structure for reading redacted kernel memory introspection data.
  • St
    __RequestUnion__mach_host_subsystem
    A union of all request messages in the Mach host subsystem.
  • St
    __Reply__host_info_t
    The Mach message reply structure returning host information of a given flavor.
  • St
    __Reply__host_kernel_version_t
    The Mach message reply structure returning the kernel version string.
  • St
    __Reply___host_page_size_t
    The Mach message reply structure returning the host's page size.
  • St
    __Reply__mach_memory_object_memory_entry_t
    The Mach message reply structure returning a memory entry for a memory object.
  • St
    __Reply__host_processor_info_t
    The Mach message reply structure returning per-processor information.
  • St
    __Reply__host_get_io_main_t
    The Mach message reply structure returning the I/O Kit main port.
  • St
    __Reply__host_get_clock_service_t
    The Mach message reply structure returning a clock service port.
  • St
    __Reply__kmod_get_info_t
    The Mach message reply structure returning information about loaded kernel modules.
  • St
    __Reply__host_virtual_physical_table_info_t
    The Mach message reply structure returning the virtual-to-physical mapping table.
  • St
    __Reply__processor_set_default_t
    The Mach message reply structure returning the default processor set.
  • St
    __Reply__processor_set_create_t
    The Mach message reply structure returning a newly created processor set.
  • St
    __Reply__mach_memory_object_memory_entry_64_t
    The Mach message reply structure returning a 64-bit memory entry for a memory object.
  • St
    __Reply__host_statistics_t
    The Mach message reply structure returning host statistics of a given flavor.
  • St
    __Reply__host_request_notification_t
    The Mach message reply structure acknowledging a host notification request.
  • St
    __Reply__host_lockgroup_info_t
    The Mach message reply structure returning kernel lock group statistics.
  • St
    __Reply__host_statistics64_t
    The Mach message reply structure returning 64-bit host statistics.
  • St
    __Reply__mach_zone_info_t
    The Mach message reply structure returning kernel memory zone statistics.
  • St
    __Reply__host_create_mach_voucher_t
    The Mach message reply structure returning a newly created Mach voucher.
  • St
    __Reply__host_register_mach_voucher_attr_manager_t
    The Mach message reply structure acknowledging a Mach voucher attribute manager registration.
  • St
    __Reply__host_register_well_known_mach_voucher_attr_manager_t
    The Mach message reply structure acknowledging a well-known Mach voucher attribute manager registration.
  • St
    __Reply__host_set_atm_diagnostic_flag_t
    The Mach message reply structure acknowledging an ATM diagnostic flag change.
  • St
    __Reply__host_get_atm_diagnostic_flag_t
    The Mach message reply structure returning the host's ATM diagnostic flag.
  • St
    __Reply__mach_memory_info_t
    The Mach message reply structure returning kernel memory introspection data.
  • St
    __Reply__host_set_multiuser_config_flags_t
    The Mach message reply structure acknowledging a multiuser configuration flags change.
  • St
    __Reply__host_get_multiuser_config_flags_t
    The Mach message reply structure returning the host's multiuser configuration flags.
  • St
    __Reply__host_check_multiuser_mode_t
    The Mach message reply structure returning whether the host is in multiuser mode.
  • St
    __Reply__mach_zone_info_for_zone_t
    The Mach message reply structure returning statistics for a specific memory zone.
  • St
    __Reply__mach_memory_info_redacted_t
    The Mach message reply structure returning redacted kernel memory introspection data.
  • St
    __ReplyUnion__mach_host_subsystem
    A 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_t
    The Mach message request structure for reading the host's boot information string.
  • St
    __Request__host_reboot_t
    The Mach message request structure for rebooting the host.
  • St
    __Request__host_priv_statistics_t
    The Mach message request structure for reading privileged host statistics.
  • St
    __Request__host_default_memory_manager_t
    The Mach message request structure for setting the host's default memory manager.
  • St
    __Request__vm_wire_t
    The Mach message request structure for wiring or unwiring virtual memory.
  • St
    __Request__thread_wire_t
    The Mach message request structure for marking a thread as privileged for paging.
  • St
    __Request__vm_allocate_cpm_t
    The Mach message request structure for allocating contiguous physical memory.
  • St
    __Request__host_processors_t
    The Mach message request structure for listing the host's processors.
  • St
    __Request__host_get_clock_control_t
    The Mach message request structure for obtaining a clock's privileged control port.
  • St
    __Request__kmod_create_t
    The Mach message request structure for creating a kernel module reference.
  • St
    __Request__kmod_destroy_t
    The Mach message request structure for destroying a kernel module reference.
  • St
    __Request__kmod_control_t
    The Mach message request structure for controlling a kernel module.
  • St
    __Request__host_get_special_port_t
    The Mach message request structure for retrieving a host special port.
  • St
    __Request__host_set_special_port_t
    The Mach message request structure for assigning a host special port.
  • St
    __Request__host_set_exception_ports_t
    The Mach message request structure for setting the host's exception handler ports.
  • St
    __Request__host_get_exception_ports_t
    The Mach message request structure for retrieving the host's exception handler ports.
  • St
    __Request__host_swap_exception_ports_t
    The Mach message request structure for atomically replacing the host's exception ports.
  • St
    __Request__mach_vm_wire_t
    The Mach message request structure for wiring or unwiring virtual memory by address.
  • St
    __Request__host_processor_sets_t
    The Mach message request structure for listing the host's processor sets.
  • St
    __Request__host_processor_set_priv_t
    The Mach message request structure for obtaining a processor set's privileged control port.
  • St
    __Request__host_set_UNDServer_t
    The Mach message request structure for setting the host's user notification server port.
  • St
    __Request__host_get_UNDServer_t
    The Mach message request structure for retrieving the host's user notification server port.
  • St
    __Request__kext_request_t
    The Mach message request structure for sending a request to the kernel extension server.
  • St
    __RequestUnion__host_priv_subsystem
    A union of all request messages in the privileged host subsystem.
  • St
    __Reply__host_get_boot_info_t
    The Mach message reply structure returning the host's boot information string.
  • St
    __Reply__host_reboot_t
    The Mach message reply structure acknowledging a host reboot request.
  • St
    __Reply__host_priv_statistics_t
    The Mach message reply structure returning privileged host statistics.
  • St
    __Reply__host_default_memory_manager_t
    The Mach message reply structure acknowledging a default memory manager change.
  • St
    __Reply__vm_wire_t
    The Mach message reply structure acknowledging a virtual memory wiring request.
  • St
    __Reply__thread_wire_t
    The Mach message reply structure acknowledging a thread paging-privilege request.
  • St
    __Reply__vm_allocate_cpm_t
    The Mach message reply structure returning a contiguous physical memory allocation.
  • St
    __Reply__host_processors_t
    The Mach message reply structure returning the host's processor list.
  • St
    __Reply__host_get_clock_control_t
    The Mach message reply structure returning a clock's privileged control port.
  • St
    __Reply__kmod_create_t
    The Mach message reply structure acknowledging a kernel module creation.
  • St
    __Reply__kmod_destroy_t
    The Mach message reply structure acknowledging a kernel module destruction.
  • St
    __Reply__kmod_control_t
    The Mach message reply structure returning the result of a kernel module control request.
  • St
    __Reply__host_get_special_port_t
    The Mach message reply structure returning a host special port.
  • St
    __Reply__host_set_special_port_t
    The Mach message reply structure acknowledging a host special port assignment.
  • St
    __Reply__host_set_exception_ports_t
    The Mach message reply structure acknowledging a host exception ports change.
  • St
    __Reply__host_get_exception_ports_t
    The Mach message reply structure returning the host's exception handler ports.
  • St
    __Reply__host_swap_exception_ports_t
    The Mach message reply structure returning the host's previous exception ports after a swap.
  • St
    __Reply__mach_vm_wire_t
    The Mach message reply structure acknowledging a virtual memory wiring request.
  • St
    __Reply__host_processor_sets_t
    The Mach message reply structure returning the host's processor sets.
  • St
    __Reply__host_processor_set_priv_t
    The Mach message reply structure returning a processor set's privileged control port.
  • St
    __Reply__host_set_UNDServer_t
    The Mach message reply structure acknowledging a user notification server port change.
  • St
    __Reply__host_get_UNDServer_t
    The Mach message reply structure returning the host's user notification server port.
  • St
    __Reply__kext_request_t
    The Mach message reply structure returning the result of a kernel extension server request.
  • St
    __ReplyUnion__host_priv_subsystem
    A 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_t
    The Mach message request structure for creating a task with a security token.
  • St
    __Request__host_security_set_task_token_t
    The Mach message request structure for setting a task's security token.
  • St
    __RequestUnion__host_security_subsystem
    A union of all request messages in the host security subsystem.
  • St
    __Reply__host_security_create_task_token_t
    The Mach message reply structure returning a newly created security-tokened task.
  • St
    __Reply__host_security_set_task_token_t
    The Mach message reply structure acknowledging a task security token change.
  • St
    __ReplyUnion__host_security_subsystem
    A 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_t
    The Mach message request structure for listing the names in a port name space.
  • St
    __Request__mach_port_type_t
    The Mach message request structure for querying the type of a port right.
  • St
    __Request__mach_port_rename_t
    The Mach message request structure for renaming a port right.
  • St
    __Request__mach_port_allocate_name_t
    The Mach message request structure for allocating a port right with a chosen name.
  • St
    __Request__mach_port_allocate_t
    The Mach message request structure for allocating a new port right.
  • St
    __Request__mach_port_destroy_t
    The Mach message request structure for destroying a port name and all its rights.
  • St
    __Request__mach_port_deallocate_t
    The Mach message request structure for releasing a user reference on a port right.
  • St
    __Request__mach_port_get_refs_t
    The Mach message request structure for reading the reference count of a port right.
  • St
    __Request__mach_port_mod_refs_t
    The Mach message request structure for modifying the reference count of a port right.
  • St
    __Request__mach_port_peek_t
    The Mach message request structure for peeking at a message in a port's queue.
  • St
    __Request__mach_port_set_mscount_t
    The Mach message request structure for setting a receive right's make-send count.
  • St
    __Request__mach_port_get_set_status_t
    The Mach message request structure for reading the membership of a port set.
  • St
    __Request__mach_port_move_member_t
    The Mach message request structure for moving a receive right into or out of a port set.
  • St
    __Request__mach_port_request_notification_t
    The Mach message request structure for requesting a notification on a port.
  • St
    __Request__mach_port_insert_right_t
    The Mach message request structure for inserting a port right into a name space.
  • St
    __Request__mach_port_extract_right_t
    The Mach message request structure for extracting a port right from a name space.
  • St
    __Request__mach_port_set_seqno_t
    The Mach message request structure for setting a receive right's message sequence number.
  • St
    __Request__mach_port_get_attributes_t
    The Mach message request structure for reading a port's attributes.
  • St
    __Request__mach_port_set_attributes_t
    The Mach message request structure for setting a port's attributes.
  • St
    __Request__mach_port_allocate_qos_t
    The Mach message request structure for allocating a port right with quality-of-service options.
  • St
    __Request__mach_port_allocate_full_t
    The 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
  • St
    mach_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
  • St
    mach_voucher_attr_recipe_data
  • St
    processor_cpu_stat
  • St
    processor_cpu_stat64
  • St
    arm_state_hdr
  • St
    arm_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
  • St
    memory_object_perf_info
  • St
    memory_object_attr_info
  • St
    memory_object_behave_info
  • St
    mach_msg_type_descriptor_t
  • St
    mach_msg_port_descriptor_t
  • St
    mach_msg_ool_descriptor32_t
  • St
    mach_msg_ool_descriptor64_t
  • St
    mach_msg_ool_descriptor_t
  • St
    mach_msg_ool_ports_descriptor32_t
  • St
    mach_msg_ool_ports_descriptor64_t
  • St
    mach_msg_ool_ports_descriptor_t
  • St
    mach_msg_guarded_port_descriptor32_t
  • St
    mach_msg_guarded_port_descriptor64_t
  • St
    mach_msg_guarded_port_descriptor_t
  • St
    mach_msg_descriptor_t
  • St
    mach_msg_body_t
  • St
    mach_msg_header_t
  • St
    mach_msg_base_t
  • St
    mach_msg_trailer_t
  • St
    mach_msg_seqno_trailer_t
  • St
    security_token_t
  • St
    mach_msg_security_trailer_t
  • St
    audit_token_t
  • St
    mach_msg_audit_trailer_t
  • St
    mach_msg_context_trailer_t
  • St
    msg_labels_t
  • St
    mach_msg_mac_trailer_t
  • St
    mach_msg_empty_send_t
  • St
    mach_msg_empty_rcv_t
  • St
    mach_msg_empty_t
  • St
    routine_descriptor
  • St
    mig_subsystem
  • St
    mig_symtab
  • St
    mig_reply_error_t
  • St
    NDR_record_t
  • St
    mach_port_deleted_notification_t
  • St
    mach_send_possible_notification_t
  • St
    mach_port_destroyed_notification_t
  • St
    mach_no_senders_notification_t
  • St
    mach_send_once_notification_t
  • St
    mach_dead_name_notification_t
  • St
    policy_timeshare_base
  • St
    policy_timeshare_limit
  • St
    policy_timeshare_info
  • St
    policy_rr_base
  • St
    policy_rr_limit
  • St
    policy_rr_info
  • St
    policy_fifo_base
  • St
    policy_fifo_limit
  • St
    policy_fifo_info
  • St
    policy_bases
  • St
    policy_limits
  • St
    policy_infos
  • St
    mach_port_status
  • St
    mach_port_limits
  • St
    mach_port_info_ext
  • St
    mach_port_guard_info
  • St
    mach_port_qos
  • St
    mach_service_port_info
  • St
    mpo_flags_t
  • St
    mach_port_options
  • St
    mach_port_guard_exception_codes
  • St
    port_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
  • St
    processor_basic_info
  • St
    processor_cpu_load_info
  • St
    processor_set_basic_info
  • St
    processor_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
  • St
    rpc_routine_arg_descriptor
  • St
    rpc_routine_descriptor
  • St
    rpc_signature
  • St
    rpc_subsystem
  • St
    shared_file_mapping_np
  • St
    shared_file_mapping_slide_np
  • St
    shared_file_np
  • St
    src_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
  • St
    task_basic_info_32
  • St
    task_basic_info_64
  • St
    task_basic_info
  • St
    task_events_info
  • St
    task_thread_times_info
  • St
    task_absolutetime_info
  • St
    task_kernelmemory_info
  • St
    task_affinity_tag_info
  • St
    task_dyld_info
  • St
    task_basic_info_64_2
  • St
    task_extmod_info
  • St
    mach_task_basic_info
  • St
    task_power_info
  • St
    task_vm_info
  • St
    task_trace_memory_info
  • St
    task_wait_state_info
  • St
    gpu_energy_data
  • St
    task_power_info_v2
  • St
    task_flags_info
  • St
    task_security_config_info
  • St
    task_ipc_space_policy_info
  • St
    task_vm_shared_cache_info
  • St
    task_shared_region_stubs_t
  • St
    task_shared_region_info
  • St
    task_inspect_flavor
  • St
    task_inspect_basic_counts
  • St
    task_role
  • St
    task_category_policy
  • St
    task_latency_qos
  • St
    task_throughput_qos
  • St
    task_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
  • St
    thread_basic_info
  • St
    thread_identifier_info
  • St
    thread_extended_info
  • St
    io_stat_entry
  • St
    io_stat_info
  • St
    thread_standard_policy
  • St
    thread_extended_policy
  • St
    thread_time_constraint_policy
  • St
    thread_precedence_policy
  • St
    thread_affinity_policy
  • St
    thread_background_policy
  • St
    thread_latency_qos_policy
  • St
    thread_throughput_qos_policy
  • St
    time_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
  • St
    vm_region_basic_info_64
  • St
    vm_region_basic_info
  • St
    vm_region_extended_info
  • St
    vm_region_top_info
  • St
    vm_region_submap_info
  • St
    vm_region_submap_info_64
  • St
    vm_region_submap_short_info_64
  • St
    mach_vm_read_entry
  • St
    vm_read_entry
  • St
    vm_page_info_basic
  • St
    vm_page_info_extended
  • St
    vm_statistics
  • St
    vm_statistics64
  • St
    vm_extmod_statistics
  • St
    vm_purgeable_stat
  • St
    vm_purgeable_info
  • St
    mach_vm_range
    @typedef mach_vm_range_t
  • St
    mach_vm_range_flags_t
    @enum mach_vm_range_flags_t
  • St
    mach_vm_range_recipe_v1_t
  • St
    aiocb
  • St
    DIR
  • St
    dirent
  • St
    dl_info
    Structure filled in by dladdr().
  • St
    flock
  • St
    flocktimeout
  • St
    radvisory
  • St
    radvisoryv
  • St
    fsignatures
  • St
    fsupplement
  • St
    fchecklv
  • St
    fgetsigsinfo
  • St
    fstore
  • St
    fpunchhole
  • St
    ftrimactivefile
  • St
    fspecread
  • St
    fattributiontag
  • St
    log2phys
  • St
    filesec_property_t
  • St
    FTW
  • St
    glob_t
  • St
    group
  • St
    iconv_allocation_t
  • St
    iconv_hooks
  • St
    iconv_fallbacks
  • St
    ifaddrs
  • St
    ifmaddrs
  • St
    ttysize
  • St
    datum
  • St
    DBM
  • St
    sockaddr_dl
  • St
    if_clonereq
  • St
    if_msghdr
  • St
    ifa_msghdr
  • St
    ifma_msghdr
  • St
    if_msghdr2
  • St
    ifma_msghdr2
  • St
    ifdevmtu
  • St
    ifkpi
  • St
    ifreq
  • St
    ifaliasreq
  • St
    rslvmulti_req
  • St
    ifmediareq
  • St
    ifdrv
  • St
    ifstat
  • St
    ifconf
  • St
    kev_dl_proto_data
  • St
    if_nameindex
  • St
    hostent
  • St
    netent
  • St
    servent
  • St
    protoent
  • St
    addrinfo
  • St
    rpcent
  • St
    in_addr
  • St
    sockaddr_in
  • St
    ip_opts
  • St
    ip_mreq
  • St
    ip_mreqn
  • St
    ip_mreq_source
  • St
    group_req
  • St
    group_source_req
  • St
    __msfilterreq
  • St
    in_pktinfo
  • St
    in6_addr
  • St
    sockaddr_in6
  • St
    ipv6_mreq
  • St
    in6_pktinfo
  • St
    ip6_mtuinfo
  • St
    tcphdr
  • St
    tcp_connection_info
  • St
    pollfd
  • St
    passwd
  • St
    regex_t
  • St
    regmatch_t
  • St
    entry
  • St
    ACTION
  • St
    VISIT
  • St
    pseminfo
  • St
    ipc_perm
  • St
    __msqid_ds_new
  • St
    msg
  • St
    mymsg
  • St
    msginfo
  • St
    __semid_ds_new
  • St
    sem
  • St
    sembuf
  • St
    semun
  • St
    __shmid_ds_new
  • St
    pshminfo
  • St
    sa_endpoints
  • St
    linger
  • St
    so_np_extensions
  • St
    sockaddr
  • St
    __sockaddr_header
  • St
    sockproto
  • St
    sockaddr_storage
  • St
    msghdr
  • St
    cmsghdr
  • St
    sf_hdtr
  • St
    ostat
  • St
    stat
  • St
    statvfs
  • St
    itimerval
  • St
    timezone
  • St
    clockinfo
  • St
    tms
  • St
    fsid
  • St
    fsobj_id
  • St
    secure_boot_cryptex_args
  • St
    graft_args
  • St
    guid_t
  • St
    iovec
  • St
    timeval32
  • St
    timeval64
  • St
    __darwin_ucontext64
  • St
    uio_rw
  • St
    sockaddr_un
  • St
    utsname
  • St
    sockaddr_vm
  • St
    xvsockpcb
  • St
    xvsockpgen
  • St
    termios
  • St
    utimbuf
  • St
    utmpx
  • St
    lastlogx
  • St
    wordexp_t
  • St
    NXByteOrder
  • St
    proc_persona_info
  • St
    persona_token
  • St
    persona_modify_info
  • St
    au_tid
  • St
    au_tid_addr
  • St
    au_mask
  • St
    auditinfo
  • St
    auditinfo_addr
  • St
    auditpinfo
  • St
    auditpinfo_addr
  • St
    au_session
  • St
    au_expire_after
  • St
    au_qctrl
  • St
    audit_stat
  • St
    audit_fstat
  • St
    au_evclass_map
  • St
    audit_session_flags
  • St
    au_sdev_open_flags
  • St
    au_sdev_handle
  • St
    au_event_ent
  • St
    au_class_ent
  • St
    au_user_ent
  • St
    au_tid32
  • St
    au_tid64
  • St
    au_tidaddr32
  • St
    au_tidaddr64
  • St
    au_arg32_t
  • St
    au_arg64_t
  • St
    au_arb_t
  • St
    au_attr32_t
  • St
    au_attr64_t
  • St
    au_execarg_t
  • St
    au_execenv_t
  • St
    au_cert_hash_t
  • St
    au_krb5_principal_t
  • St
    au_exit_t
  • St
    au_file_t
  • St
    au_groups_t
  • St
    au_header32_t
  • St
    au_header32_ex_t
  • St
    au_header64_t
  • St
    au_header64_ex_t
  • St
    au_inaddr_t
  • St
    au_inaddr_ex_t
  • St
    au_ip_t
  • St
    au_ipc_t
  • St
    au_ipcperm_t
  • St
    au_iport_t
  • St
    au_opaque_t
  • St
    au_path_t
  • St
    au_proc32_t
  • St
    au_proc64_t
  • St
    au_proc32ex_t
  • St
    au_proc64ex_t
  • St
    au_ret32_t
  • St
    au_ret64_t
  • St
    au_seq_t
  • St
    au_socket_t
  • St
    au_socket_ex32_t
  • St
    au_socketinet_ex32_t
  • St
    au_socketinet32_t
  • St
    au_socketunix_t
  • St
    au_subject32_t
  • St
    au_subject64_t
  • St
    au_subject32ex_t
  • St
    au_subject64ex_t
  • St
    au_text_t
  • St
    au_zonename_t
  • St
    au_kevent_t
  • St
    au_invalid_t
  • St
    au_identity_t
  • St
    au_trailer_t
  • St
    tokenstr
  • St
    image_offset
  • St
    fstab
  • St
    FTS
  • St
    _ftsent
  • St
    option
  • St
    HFSExtentKey
  • St
    HFSPlusExtentKey
  • St
    HFSExtentDescriptor
  • St
    HFSPlusExtentDescriptor
  • St
    FndrFileInfo
  • St
    FndrDirInfo
  • St
    FndrOpaqueInfo
  • St
    FndrExtendedDirInfo
  • St
    FndrExtendedFileInfo
  • St
    HFSPlusForkData
  • St
    HFSPlusBSDInfo
  • St
    HFSCatalogKey
  • St
    HFSPlusCatalogKey
  • St
    HFSCatalogFolder
  • St
    HFSPlusCatalogFolder
  • St
    HFSCatalogFile
  • St
    HFSPlusCatalogFile
  • St
    HFSCatalogThread
  • St
    HFSPlusCatalogThread
  • St
    HFSPlusAttrForkData
  • St
    HFSPlusAttrExtents
  • St
    HFSPlusAttrData
  • St
    HFSPlusAttrInlineData
  • St
    HFSPlusAttrRecord
  • St
    HFSPlusAttrKey
  • St
    HFSMasterDirectoryBlock
  • St
    HFSPlusVolumeHeader
  • St
    BTreeKeyLimits
  • St
    BTreeKey
  • St
    BTNodeDescriptor
  • St
    BTHeaderRec
  • St
    JournalInfoBlock
  • St
    hfs_mount_args
  • St
    HFSUniStr255
  • St
    qelem
  • St
    _OSUnalignedU16
  • St
    _OSUnalignedU32
  • St
    _OSUnalignedU64
  • St
    fasttrap_instr_t
  • St
    fasttrap_machtp
  • St
    malloc_zone_malloc_options_t
    @enum malloc_zone_malloc_options_t
  • St
    _malloc_zone_t
  • St
    malloc_type_callsite_flags_v0_t
    @enum malloc_type_callsite_flags_v0_t
  • St
    malloc_type_kind_v0_t
    @enum malloc_type_kind_v0_t
  • St
    malloc_type_layout_semantics_v0_t
    @struct malloc_type_layout_semantics_v0_t
  • St
    malloc_type_summary_v0_t
    @struct malloc_type_summary_v0_t
  • St
    malloc_type_descriptor_v0_t
    @union malloc_type_descriptor_v0_t
  • St
    vm_range_t
  • St
    malloc_statistics_t
  • St
    malloc_introspection_t
  • St
    mstats
  • St
    bpf_program
  • St
    bpf_stat
  • St
    bpf_version
  • St
    bpf_hdr
  • St
    bpf_insn
  • St
    bpf_dltlist
  • St
    ether_header
  • St
    ether_addr
  • St
    arphdr
  • St
    arpreq
  • St
    arpstat
  • St
    llc
  • St
    frmrinfo
  • St
    ifmedia_description
  • St
    ifmibdata
  • St
    ifs_iso_8802_3
  • St
    dot3Vendors
  • St
    utun_stats_param
  • St
    net_event_data
  • St
    if_data
  • St
    if_data64
  • St
    ifqueue
  • St
    so_nke
  • St
    sockaddr_ndrv
  • St
    ndrv_demux_desc
  • St
    ndrv_protocol_desc
  • St
    sadb_msg
  • St
    sadb_ext
  • St
    sadb_sa
  • St
    sadb_lifetime
  • St
    sadb_address
  • St
    sadb_key
  • St
    sadb_ident
  • St
    sadb_sens
  • St
    sadb_prop
  • St
    sadb_comb
  • St
    sadb_supported
  • St
    sadb_alg
  • St
    sadb_spirange
  • St
    sadb_x_kmprivate
  • St
    sadb_x_sa2
  • St
    sadb_x_policy
  • St
    sadb_x_ipsecrequest
  • St
    sadb_session_id
  • St
    sastat
  • St
    sadb_sastat
  • St
    rt_metrics
  • St
    rtstat
  • St
    rt_msghdr
  • St
    rt_msghdr2
  • St
    rt_msghdr_prelude
  • St
    rt_addrinfo
  • St
    bootp
  • St
    vend
  • St
    nextvend
  • St
    bootp_packet
  • St
    icmp6_hdr
  • St
    mld_hdr
  • St
    nd_router_solicit
  • St
    nd_router_advert
  • St
    nd_neighbor_solicit
  • St
    nd_neighbor_advert
  • St
    nd_redirect
  • St
    nd_opt_hdr
  • St
    nd_opt_prefix_info
  • St
    nd_opt_nonce
  • St
    nd_opt_rd_hdr
  • St
    nd_opt_mtu
  • St
    nd_opt_route_info
  • St
    nd_opt_rdnss
  • St
    nd_opt_dnssl
  • St
    nd_opt_dnr
  • St
    nd_opt_pref64
  • St
    nd_opt_pvd
  • St
    icmp6_namelookup
  • St
    icmp6_nodeinfo
  • St
    ni_reply_fqdn
  • St
    icmp6_router_renum
  • St
    rr_pco_match
  • St
    rr_pco_use
  • St
    rr_result
  • St
    icmp6_filter
  • St
    icmp6errstat
  • St
    icmp6stat
  • St
    icmpstat
  • St
    ether_arp
  • St
    sockaddr_inarp
  • St
    igmp
  • St
    igmpv3
  • St
    igmp_grouprec
  • St
    igmp_report
  • St
    igmpstat_v3
  • St
    igmpstat
  • St
    in_addr_4in6
  • St
    _inpcb_list_entry
  • St
    inpcb
  • St
    xinpcb
  • St
    inpcb64_list_entry
  • St
    xinpcb64
  • St
    xinpgen
  • St
    in_aliasreq
  • St
    kev_in_data
  • St
    kev_in_collision
  • St
    kev_in_arpfailure
  • St
    kev_in_arpalive
  • St
    kev_in_portinuse
  • St
    ip
  • St
    ip_timestamp
  • St
    ipt_timestamp
  • St
    ipt_ta
  • St
    ip6_hdr
  • St
    ip6_hdrctl
  • St
    ip6_ext
  • St
    ip6_hbh
  • St
    ip6_dest
  • St
    ip6_opt
  • St
    ip6_opt_jumbo
  • St
    ip6_opt_nsap
  • St
    ip6_opt_tunnel
  • St
    ip6_opt_router
  • St
    ip6_rthdr
  • St
    ip6_rthdr0
  • St
    ip6_frag
  • St
    icmp_ra_addr
  • St
    icmp
  • St
    ih_idseq
  • St
    ih_pmtu
  • St
    ih_rtradv
  • St
    id_ts
  • St
    id_ip
  • St
    ipovly
  • St
    ipstat
  • St
    ip_linklocal_stat
  • St
    tsegqe_head
  • St
    tcpcb
  • St
    tcpstat
  • St
    tcpstat_local
  • St
    xtcpcb
  • St
    xtcpcb64
  • St
    tcpiphdr
  • St
    udphdr
  • St
    udpiphdr
  • St
    udpstat
  • St
    ah
  • St
    newah
  • St
    esp
  • St
    newesp
  • St
    esptail
  • St
    in6_addrlifetime
  • St
    in6_addrpolicy
  • St
    in6_ifstat
  • St
    icmp6_ifstat
  • St
    in6_ifreq
  • St
    in6_aliasreq
  • St
    in6_prflags
  • St
    prf_ra
  • St
    prf_rr
  • St
    in6_prefixreq
  • St
    in6_rrenumreq
  • St
    irr_raflagmask
  • St
    kev_in6_addrlifetime
  • St
    kev_in6_data
  • St
    ipcomp
  • St
    ipsecstat
  • St
    ipsec_wake_pkt_info
  • St
    ipsec_wake_pkt_event_data
  • St
    rip6stat
  • St
    os_clockid_t
  • St
    os_unfair_lock_s
    @typedef os_unfair_lock
  • St
    __os_unfair_lock_flags_t
    @typedef os_unfair_lock_flags_t
  • St
    acct
  • St
    acl_perm_t
  • St
    acl_tag_t
  • St
    acl_type_t
  • St
    acl_entry_id_t
  • St
    acl_flag_t
  • St
    attrlist
  • St
    attribute_set
  • St
    attrreference
  • St
    diskextent
  • St
    vol_capabilities_attr
  • St
    vol_attributes_attr
  • St
    fssearchblock
  • St
    searchstate
  • St
    vnode_verify_kind_t
  • St
    dk_extent_t
  • St
    dk_firmware_path_t
  • St
    dk_format_capacity_t
  • St
    dk_format_capacities_t
  • St
    dk_synchronize_t
  • St
    dk_unmap_t
  • St
    dk_corestorage_info_t
  • St
    dk_provision_extent_t
  • St
    dk_provision_status_t
  • St
    dk_error_description_t
  • St
    eventreq
  • St
    kevent
  • St
    kevent64_s
  • St
    klist
  • St
    gmonhdr
  • St
    gmonhdr_64
  • St
    tostruct
  • St
    tostruct_64
  • St
    rawarc
  • St
    rawarc_64
  • St
    gmonparam
  • St
    gmon_data
  • St
    rawarc_order
  • St
    rawarc_order_64
  • St
    tchars
  • St
    ltchars
  • St
    sgttyb
  • St
    ntsid_t
  • St
    kauth_identity_extlookup
  • St
    kauth_cache_sizes
  • St
    kauth_ace
  • St
    kauth_acl
  • St
    kauth_filesec
  • St
    ctl_event_data
    @struct ctl_event_data
  • St
    ctl_info
    @struct ctl_info
  • St
    sockaddr_ctl
    @struct sockaddr_ctl
  • St
    kern_event_msg
    @struct kern_event_msg
  • St
    kev_request
    @struct kev_request
  • St
    kev_vendor_code
  • St
    mbstat
  • St
    ombstat
  • St
    mb_class_stat
  • St
    mb_stat
  • St
    statfs
  • St
    vfsstatfs
  • St
    vfsconf
  • St
    vfsidctl
  • St
    vfsquery
  • St
    vfs_server
  • St
    netfs_status
  • St
    fhandle
  • St
    graftdmg_type_t
  • St
    cryptex_auth_type_t
  • St
    msgbuf
  • St
    np_uid_t
  • St
    network_port_t
  • St
    pipebuf
  • St
    extern_proc
  • St
    proc_bsdinfo
  • St
    proc_bsdshortinfo
  • St
    proc_taskinfo
  • St
    proc_taskallinfo
  • St
    proc_threadinfo
  • St
    proc_regioninfo
  • St
    proc_workqueueinfo
  • St
    proc_fileinfo
  • St
    proc_exitreasonbasicinfo
  • St
    proc_exitreasoninfo
  • St
    vinfo_stat
  • St
    vnode_info
  • St
    vnode_info_path
  • St
    vnode_fdinfo
  • St
    vnode_fdinfowithpath
  • St
    proc_regionwithpathinfo
  • St
    proc_regionpath
  • St
    proc_vnodepathinfo
  • St
    proc_threadwithpathinfo
  • St
    proc_archinfo
  • St
    in4in6_addr
  • St
    in_sockinfo
  • St
    tcp_sockinfo
  • St
    un_sockinfo
  • St
    ndrv_info
  • St
    kern_event_info
  • St
    kern_ctl_info
  • St
    vsock_sockinfo
  • St
    sockbuf_info
  • St
    socket_info
  • St
    socket_fdinfo
  • St
    psem_info
  • St
    psem_fdinfo
  • St
    pshm_info
  • St
    pshm_fdinfo
  • St
    pipe_info
  • St
    pipe_fdinfo
  • St
    kqueue_info
  • St
    kqueue_dyninfo
  • St
    kqueue_fdinfo
  • St
    appletalk_info
  • St
    appletalk_fdinfo
  • St
    proc_fdinfo
  • St
    proc_fileportinfo
  • St
    proc_channel_info
  • St
    channel_fdinfo
  • St
    dqfilehdr
  • St
    dqblk
  • St
    rb_tree_ops_t
  • St
    rb_node
  • St
    rb_tree
  • St
    panic_with_data_flags
  • St
    pstats
  • St
    uprof
  • St
    sbuf
  • St
    xsockbuf
  • St
    xsocket
  • St
    xsocket64
  • St
    so_tracker_action
  • St
    so_tracker_attribute
  • St
    sockaddr_sys
  • St
    ctlname
  • St
    _pcred
  • St
    _ucred
  • St
    kinfo_proc
  • St
    eproc
  • St
    xsw_usage
  • St
    loadavg
  • St
    timeb
  • St
    speedtab
  • St
    ttychars
  • St
    winsize
  • St
    xucred
  • St
    _unpcb_list_entry
  • St
    xunpgen
  • St
    user
  • St
    vmspace
  • St
    vtype
  • St
    vtagtype
  • St
    io_compression_stats
  • St
    iocs_store_buffer_entry
  • St
    DarwinBooleaniOS 7.0+
    The `Boolean` type declared in MacTypes.h and used throughout Core

Enumerations 5

  • En
    ipc_info_object_type_t
    @brief
  • En
    virtual_memory_guard_exception_code_t
  • En
    mach_vm_range_flavor_t
    @enum mach_vm_range_flavor_t
  • En
    mach_vm_range_tag_t
    @enum mach_vm_range_tag_t
  • En
    MachErrorCodeiOS 7.0+
    Enumeration describing Mach error codes.

Type Aliases 768

  • Ty
    copyfile_state_t
  • Ty
    copyfile_flags_t
  • Ty
    copyfile_callback_t
  • Ty
    xattr_operation_intent_t
  • Ty
    xattr_flags_t
  • Ty
    OSErr
    Higher level basic types
  • Ty
    OSStatus
  • Ty
    OptionBits
  • Ty
    FourCharCode
  • Ty
    OSType
  • Ty
    UTF32Char
  • Ty
    UniChar
  • Ty
    UTF16Char
  • Ty
    UTF8Char
  • Ty
    voucher_mach_msg_state_t
    @typedef voucher_mach_msg_state_t
  • Ty
    alarm_type_t
Show 752 more
  • Ty
    sleep_type_t
  • Ty
    clock_id_t
  • Ty
    clock_flavor_t
  • Ty
    clock_attr_t
  • Ty
    clock_res_t
  • Ty
    mach_timespec_t
  • Ty
    hash_info_bucket_t
  • Ty
    hash_info_bucket_array_t
  • Ty
    ipc_info_space_t
  • Ty
    ipc_info_space_basic_t
  • Ty
    ipc_info_name_t
  • Ty
    ipc_info_name_array_t
  • Ty
    ipc_info_tree_name_t
  • Ty
    ipc_info_tree_name_array_t
  • Ty
    ipc_info_port_t
  • Ty
    exception_handler_info_array_t
  • Ty
    lockgroup_info_t
  • Ty
    lockgroup_info_array_t
  • Ty
    symtab_name_t
  • Ty
    kobject_description_t
  • Ty
    page_address_array_t
  • Ty
    mach_vm_info_region_t
  • Ty
    vm_info_region_64_t
  • Ty
    vm_info_region_t
  • Ty
    vm_info_object_t
  • Ty
    vm_info_object_array_t
  • Ty
    zone_name_t
  • Ty
    zone_name_array_t
  • Ty
    zone_info_t
  • Ty
    zone_info_array_t
  • Ty
    mach_zone_name_t
  • Ty
    mach_zone_name_array_t
  • Ty
    mach_zone_info_t
  • Ty
    mach_zone_info_array_t
  • Ty
    task_zone_info_t
  • Ty
    task_zone_info_array_t
  • Ty
    mach_memory_info_t
  • Ty
    mach_memory_info_array_t
  • Ty
    zone_btrecord_t
  • Ty
    zone_btrecord_array_t
  • Ty
    dyld_kernel_image_info_t
  • Ty
    dyld_kernel_process_info_t
  • Ty
    dyld_kernel_image_info_array_t
  • Ty
    mach_error_t
  • Ty
    mach_error_fn_t
  • Ty
    exception_type_t
  • Ty
    exception_data_type_t
  • Ty
    mach_exception_data_type_t
  • Ty
    exception_behavior_t
  • Ty
    exception_data_t
  • Ty
    mach_exception_data_t
  • Ty
    exception_mask_t
  • Ty
    exception_mask_array_t
  • Ty
    exception_behavior_array_t
  • Ty
    exception_flavor_array_t
  • Ty
    exception_port_array_t
  • Ty
    exception_port_info_array_t
  • Ty
    mach_exception_code_t
  • Ty
    mach_exception_subcode_t
  • Ty
    host_info_t
  • Ty
    host_info64_t
  • Ty
    host_info_data_t
  • Ty
    kernel_version_t
  • Ty
    kernel_boot_info_t
  • Ty
    host_flavor_t
  • Ty
    host_can_has_debugger_info_data_t
  • Ty
    host_can_has_debugger_info_t
  • Ty
    host_basic_info_data_t
  • Ty
    host_basic_info_t
  • Ty
    host_sched_info_data_t
  • Ty
    host_sched_info_t
  • Ty
    kernel_resource_sizes_data_t
  • Ty
    kernel_resource_sizes_t
  • Ty
    host_priority_info_data_t
  • Ty
    host_priority_info_t
  • Ty
    host_load_info_data_t
  • Ty
    host_load_info_t
  • Ty
    host_purgable_info_data_t
  • Ty
    host_purgable_info_t
  • Ty
    host_cpu_load_info_data_t
  • Ty
    host_cpu_load_info_t
  • Ty
    host_preferred_user_arch_data_t
  • Ty
    host_preferred_user_arch_t
  • Ty
    hv_return_t
  • Ty
    hv_memory_flags_t
  • Ty
    kmod_t
  • Ty
    kmod_start_func_t
  • Ty
    kmod_stop_func_t
  • Ty
    kmod_reference_t
  • Ty
    kmod_info_t
    Warning: Any changes to the kmod_info structure affect the
  • Ty
    kmod_info_32_v1_t
  • Ty
    kmod_info_64_v1_t
  • Ty
    kmod_args_t
    These 3 should be dropped but they're referenced by MIG declarations.
  • Ty
    kmod_control_flavor_t
  • Ty
    kmod_info_array_t
  • Ty
    mach_timebase_info_t
  • Ty
    mach_timebase_info_data_t
  • Ty
    task_t
  • Ty
    task_name_t
  • Ty
    task_policy_set_t
  • Ty
    task_policy_get_t
  • Ty
    task_inspect_t
  • Ty
    task_read_t
  • Ty
    task_suspension_token_t
  • Ty
    thread_t
  • Ty
    thread_act_t
  • Ty
    thread_inspect_t
  • Ty
    thread_read_t
  • Ty
    thread_suspension_token_t
  • Ty
    ipc_space_t
  • Ty
    ipc_space_read_t
  • Ty
    ipc_space_inspect_t
  • Ty
    coalition_t
  • Ty
    host_t
  • Ty
    host_priv_t
  • Ty
    host_security_t
  • Ty
    processor_t
  • Ty
    processor_set_t
  • Ty
    processor_set_control_t
  • Ty
    semaphore_t
  • Ty
    lock_set_t
  • Ty
    ledger_t
  • Ty
    alarm_t
  • Ty
    clock_serv_t
  • Ty
    clock_ctrl_t
  • Ty
    arcade_register_t
  • Ty
    ipc_eventlink_t
  • Ty
    eventlink_port_pair_t
  • Ty
    task_id_token_t
  • Ty
    kcdata_object_t
  • Ty
    processor_set_name_t
  • Ty
    clock_reply_t
  • Ty
    bootstrap_t
  • Ty
    mem_entry_name_port_t
  • Ty
    exception_handler_t
  • Ty
    exception_handler_array_t
  • Ty
    vm_task_entry_t
  • Ty
    io_main_t
  • Ty
    UNDServerRef
  • Ty
    mach_eventlink_t
  • Ty
    exception_handler_info_t
  • Ty
    task_array_t
  • Ty
    thread_array_t
  • Ty
    processor_set_array_t
  • Ty
    processor_set_name_array_t
  • Ty
    processor_array_t
  • Ty
    thread_act_array_t
  • Ty
    ledger_array_t
  • Ty
    task_port_t
  • Ty
    task_port_array_t
  • Ty
    thread_port_t
  • Ty
    thread_port_array_t
  • Ty
    ipc_space_port_t
  • Ty
    host_name_t
  • Ty
    host_name_port_t
  • Ty
    processor_set_port_t
  • Ty
    processor_set_name_port_t
  • Ty
    processor_set_name_port_array_t
  • Ty
    processor_set_control_port_t
  • Ty
    processor_port_t
  • Ty
    processor_port_array_t
  • Ty
    thread_act_port_t
  • Ty
    thread_act_port_array_t
  • Ty
    semaphore_port_t
  • Ty
    lock_set_port_t
  • Ty
    ledger_port_t
  • Ty
    ledger_port_array_t
  • Ty
    alarm_port_t
  • Ty
    clock_serv_port_t
  • Ty
    clock_ctrl_port_t
  • Ty
    exception_port_t
  • Ty
    exception_port_arrary_t
  • Ty
    vfs_path_t
  • Ty
    mach_task_flavor_t
  • Ty
    mach_thread_flavor_t
  • Ty
    ledger_item_t
  • Ty
    ledger_entry_id_t
  • Ty
    ledger_amount_t
  • Ty
    emulation_vector_t
  • Ty
    user_subsystem_t
  • Ty
    labelstr_t
  • Ty
    mach_voucher_t
  • Ty
    mach_voucher_name_t
  • Ty
    mach_voucher_name_array_t
  • Ty
    ipc_voucher_t
  • Ty
    mach_voucher_selector_t
  • Ty
    mach_voucher_attr_key_t
  • Ty
    mach_voucher_attr_key_array_t
  • Ty
    mach_voucher_attr_content_t
  • Ty
    mach_voucher_attr_content_size_t
  • Ty
    mach_voucher_attr_command_t
  • Ty
    mach_voucher_attr_recipe_command_t
  • Ty
    mach_voucher_attr_recipe_command_array_t
  • Ty
    mach_voucher_attr_recipe_data_t
  • Ty
    mach_voucher_attr_recipe_t
  • Ty
    mach_voucher_attr_recipe_size_t
  • Ty
    mach_voucher_attr_raw_recipe_t
  • Ty
    mach_voucher_attr_raw_recipe_array_t
  • Ty
    mach_voucher_attr_raw_recipe_size_t
  • Ty
    mach_voucher_attr_raw_recipe_array_size_t
  • Ty
    mach_voucher_attr_manager_t
  • Ty
    mach_voucher_attr_control_t
  • Ty
    ipc_voucher_attr_manager_t
  • Ty
    ipc_voucher_attr_control_t
  • Ty
    mach_voucher_attr_value_handle_t
  • Ty
    mach_voucher_attr_value_handle_array_t
  • Ty
    mach_voucher_attr_value_handle_array_size_t
  • Ty
    mach_voucher_attr_value_reference_t
  • Ty
    mach_voucher_attr_value_flags_t
  • Ty
    mach_voucher_attr_control_flags_t
  • Ty
    mach_voucher_attr_importance_refs
  • Ty
    cpu_type_t
  • Ty
    cpu_subtype_t
  • Ty
    cpu_threadtype_t
  • Ty
    boolean_t
  • Ty
    kern_return_t
  • Ty
    processor_cpu_stat_data_t
  • Ty
    processor_cpu_stat_t
  • Ty
    processor_cpu_stat64_data_t
  • Ty
    processor_cpu_stat64_t
  • Ty
    arm_state_hdr_t
  • Ty
    arm_thread_state_t
  • Ty
    arm_thread_state32_t
  • Ty
    arm_thread_state64_t
  • Ty
    arm_unified_thread_state_t
  • Ty
    arm_vfp_state_t
  • Ty
    arm_neon_state_t
  • Ty
    arm_neon_state32_t
  • Ty
    arm_neon_state64_t
  • Ty
    arm_exception_state_t
  • Ty
    arm_exception_state32_t
  • Ty
    arm_exception_state64_t
  • Ty
    arm_exception_state64_v2_t
  • Ty
    arm_debug_state32_t
  • Ty
    arm_debug_state64_t
  • Ty
    arm_pagein_state_t
  • Ty
    arm_sme_state_t
  • Ty
    arm_sve_z_state_t
  • Ty
    arm_sve_p_state_t
  • Ty
    arm_sme_za_state_t
  • Ty
    arm_sme2_state_t
  • Ty
    arm_debug_state_t
  • Ty
    natural_t
  • Ty
    integer_t
  • Ty
    vm_offset_t
  • Ty
    vm_size_t
  • Ty
    mach_vm_address_t
  • Ty
    mach_vm_offset_t
  • Ty
    mach_vm_size_t
  • Ty
    vm_map_offset_t
  • Ty
    vm_map_address_t
  • Ty
    vm_map_size_t
  • Ty
    vm32_offset_t
  • Ty
    vm32_address_t
  • Ty
    vm32_size_t
  • Ty
    mach_port_context_t
  • Ty
    memory_object_offset_t
  • Ty
    memory_object_size_t
  • Ty
    memory_object_cluster_size_t
  • Ty
    memory_object_fault_info_t
  • Ty
    vm_object_id_t
  • Ty
    memory_object_t
  • Ty
    memory_object_control_t
  • Ty
    memory_object_array_t
  • Ty
    memory_object_name_t
  • Ty
    memory_object_default_t
  • Ty
    memory_object_copy_strategy_t
  • Ty
    memory_object_return_t
  • Ty
    memory_object_info_t
  • Ty
    memory_object_flavor_t
  • Ty
    memory_object_info_data_t
  • Ty
    memory_object_behave_info_t
  • Ty
    memory_object_behave_info_data_t
  • Ty
    memory_object_perf_info_t
  • Ty
    memory_object_perf_info_data_t
  • Ty
    memory_object_attr_info_t
  • Ty
    memory_object_attr_info_data_t
  • Ty
    mach_msg_timeout_t
  • Ty
    mach_msg_bits_t
  • Ty
    mach_msg_size_t
  • Ty
    mach_msg_id_t
  • Ty
    mach_msg_priority_t
  • Ty
    mach_msg_type_name_t
  • Ty
    mach_msg_copy_options_t
  • Ty
    mach_msg_guard_flags_t
  • Ty
    mach_msg_descriptor_type_t
  • Ty
    mach_msg_trailer_type_t
  • Ty
    mach_msg_trailer_size_t
  • Ty
    mach_msg_trailer_info_t
  • Ty
    mach_msg_filter_id
  • Ty
    mach_msg_max_trailer_t
  • Ty
    mach_msg_format_0_trailer_t
  • Ty
    mach_msg_options_t
  • Ty
    mach_msg_type_size_t
  • Ty
    mach_msg_type_number_t
  • Ty
    mach_msg_option_t
  • Ty
    mach_msg_return_t
  • Ty
    mig_stub_routine_t
  • Ty
    mig_routine_t
  • Ty
    mig_server_routine_t
  • Ty
    mig_impl_routine_t
  • Ty
    routine_arg_descriptor
  • Ty
    routine_arg_descriptor_t
  • Ty
    mig_routine_arg_descriptor_t
  • Ty
    routine_descriptor_t
  • Ty
    mig_routine_descriptor
  • Ty
    mig_routine_descriptor_t
  • Ty
    mig_subsystem_t
  • Ty
    mig_symtab_t
  • Ty
    notify_port_t
  • Ty
    policy_t
  • Ty
    policy_info_t
  • Ty
    policy_base_t
  • Ty
    policy_limit_t
  • Ty
    policy_timeshare_base_t
  • Ty
    policy_timeshare_limit_t
  • Ty
    policy_timeshare_info_t
  • Ty
    policy_timeshare_base_data_t
  • Ty
    policy_timeshare_limit_data_t
  • Ty
    policy_timeshare_info_data_t
  • Ty
    policy_rr_base_t
  • Ty
    policy_rr_limit_t
  • Ty
    policy_rr_info_t
  • Ty
    policy_rr_base_data_t
  • Ty
    policy_rr_limit_data_t
  • Ty
    policy_rr_info_data_t
  • Ty
    policy_fifo_base_t
  • Ty
    policy_fifo_limit_t
  • Ty
    policy_fifo_info_t
  • Ty
    policy_fifo_base_data_t
  • Ty
    policy_fifo_limit_data_t
  • Ty
    policy_fifo_info_data_t
  • Ty
    policy_base_data_t
  • Ty
    policy_limit_data_t
  • Ty
    policy_info_data_t
  • Ty
    mach_port_name_t
  • Ty
    mach_port_name_array_t
  • Ty
    mach_port_array_t
  • Ty
    mach_port_right_t
  • Ty
    mach_port_type_t
  • Ty
    mach_port_type_array_t
  • Ty
    mach_port_urefs_t
  • Ty
    mach_port_delta_t
  • Ty
    mach_port_seqno_t
  • Ty
    mach_port_mscount_t
  • Ty
    mach_port_msgcount_t
  • Ty
    mach_port_rights_t
  • Ty
    mach_port_srights_t
  • Ty
    mach_port_status_t
  • Ty
    mach_port_limits_t
  • Ty
    mach_port_info_ext_t
  • Ty
    mach_port_guard_info_t
  • Ty
    mach_port_info_t
  • Ty
    mach_port_flavor_t
  • Ty
    mach_port_qos_t
  • Ty
    mach_service_port_info_data_t
  • Ty
    mach_service_port_info_t
  • Ty
    mach_port_options_t
  • Ty
    mach_port_options_ptr_t
  • Ty
    processor_info_t
  • Ty
    processor_info_array_t
  • Ty
    processor_info_data_t
  • Ty
    processor_set_info_t
  • Ty
    processor_set_info_data_t
  • Ty
    processor_flavor_t
  • Ty
    processor_basic_info_data_t
  • Ty
    processor_basic_info_t
  • Ty
    processor_cpu_load_info_data_t
  • Ty
    processor_cpu_load_info_t
  • Ty
    processor_set_flavor_t
  • Ty
    processor_set_basic_info_data_t
  • Ty
    processor_set_basic_info_t
  • Ty
    processor_set_load_info_data_t
  • Ty
    processor_set_load_info_t
  • Ty
    routine_arg_type
  • Ty
    routine_arg_offset
  • Ty
    routine_arg_size
  • Ty
    rpc_routine_arg_descriptor_t
  • Ty
    rpc_routine_descriptor_t
  • Ty
    rpc_subsystem_t
  • Ty
    shared_file_mapping_slide_np_t
  • Ty
    sync_policy_t
  • Ty
    task_flavor_t
  • Ty
    task_info_t
  • Ty
    task_info_data_t
  • Ty
    task_basic_info_32_data_t
  • Ty
    task_basic_info_32_t
  • Ty
    task_basic_info_64_data_t
  • Ty
    task_basic_info_64_t
  • Ty
    task_basic_info_data_t
  • Ty
    task_basic_info_t
  • Ty
    task_events_info_data_t
  • Ty
    task_events_info_t
  • Ty
    task_thread_times_info_data_t
  • Ty
    task_thread_times_info_t
  • Ty
    task_absolutetime_info_data_t
  • Ty
    task_absolutetime_info_t
  • Ty
    task_kernelmemory_info_data_t
  • Ty
    task_kernelmemory_info_t
  • Ty
    task_affinity_tag_info_data_t
  • Ty
    task_affinity_tag_info_t
  • Ty
    task_dyld_info_data_t
  • Ty
    task_dyld_info_t
  • Ty
    task_basic_info_64_2_data_t
  • Ty
    task_basic_info_64_2_t
  • Ty
    task_extmod_info_data_t
  • Ty
    task_extmod_info_t
  • Ty
    mach_task_basic_info_data_t
  • Ty
    mach_task_basic_info_t
  • Ty
    task_power_info_data_t
  • Ty
    task_power_info_t
  • Ty
    task_vm_info_data_t
  • Ty
    task_vm_info_t
  • Ty
    task_purgable_info_t
  • Ty
    task_trace_memory_info_data_t
  • Ty
    task_trace_memory_info_t
  • Ty
    task_wait_state_info_data_t
  • Ty
    task_wait_state_info_t
  • Ty
    gpu_energy_data_t
  • Ty
    task_power_info_v2_data_t
  • Ty
    task_power_info_v2_t
  • Ty
    task_flags_info_data_t
  • Ty
    task_flags_info_t
  • Ty
    task_security_config_info_t
  • Ty
    task_ipc_space_policy_info_t
  • Ty
    task_vm_shared_cache_info_data_t
  • Ty
    task_vm_shared_cache_info_t
  • Ty
    task_shared_region_info_data_t
  • Ty
    task_shared_region_info_t
  • Ty
    task_exc_guard_behavior_t
  • Ty
    task_corpse_forking_behavior_t
  • Ty
    task_inspect_flavor_t
  • Ty
    task_inspect_basic_counts_data_t
  • Ty
    task_inspect_basic_counts_t
  • Ty
    task_inspect_info_t
  • Ty
    task_policy_flavor_t
  • Ty
    task_policy_t
  • Ty
    task_role_t
  • Ty
    task_category_policy_data_t
  • Ty
    task_category_policy_t
  • Ty
    task_latency_qos_t
  • Ty
    task_throughput_qos_t
  • Ty
    task_qos_policy_t
  • Ty
    task_special_port_t
  • Ty
    thread_flavor_t
  • Ty
    thread_info_t
  • Ty
    thread_info_data_t
  • Ty
    thread_basic_info_data_t
  • Ty
    thread_basic_info_t
  • Ty
    thread_identifier_info_data_t
  • Ty
    thread_identifier_info_t
  • Ty
    thread_extended_info_data_t
  • Ty
    thread_extended_info_t
  • Ty
    io_stat_info_t
  • Ty
    thread_policy_flavor_t
  • Ty
    thread_policy_t
  • Ty
    thread_standard_policy_data_t
  • Ty
    thread_standard_policy_t
  • Ty
    thread_extended_policy_data_t
  • Ty
    thread_extended_policy_t
  • Ty
    thread_time_constraint_policy_data_t
  • Ty
    thread_time_constraint_policy_t
  • Ty
    thread_precedence_policy_data_t
  • Ty
    thread_precedence_policy_t
  • Ty
    thread_affinity_policy_data_t
  • Ty
    thread_affinity_policy_t
  • Ty
    thread_background_policy_data_t
  • Ty
    thread_background_policy_t
  • Ty
    thread_latency_qos_t
  • Ty
    thread_latency_qos_policy_data_t
  • Ty
    thread_latency_qos_policy_t
  • Ty
    thread_throughput_qos_t
  • Ty
    thread_throughput_qos_policy_data_t
  • Ty
    thread_throughput_qos_policy_t
  • Ty
    thread_state_t
  • Ty
    thread_state_data_t
  • Ty
    thread_state_flavor_t
  • Ty
    thread_state_flavor_array_t
  • Ty
    time_value_t
  • Ty
    vm_machine_attribute_t
  • Ty
    vm_machine_attribute_val_t
  • Ty
    vm_behavior_t
  • Ty
    vm_inherit_t
  • Ty
    vm_prot_t
  • Ty
    vm_purgable_t
  • Ty
    vm32_object_id_t
  • Ty
    vm_region_info_t
  • Ty
    vm_region_info_64_t
  • Ty
    vm_region_recurse_info_t
  • Ty
    vm_region_recurse_info_64_t
  • Ty
    vm_region_flavor_t
  • Ty
    vm_region_info_data_t
  • Ty
    vm_region_basic_info_64_t
  • Ty
    vm_region_basic_info_data_64_t
  • Ty
    vm_region_basic_info_t
  • Ty
    vm_region_basic_info_data_t
  • Ty
    vm_region_extended_info_t
  • Ty
    vm_region_extended_info_data_t
  • Ty
    vm_region_top_info_t
  • Ty
    vm_region_top_info_data_t
  • Ty
    vm_region_submap_info_t
  • Ty
    vm_region_submap_info_data_t
  • Ty
    vm_region_submap_info_64_t
  • Ty
    vm_region_submap_info_data_64_t
  • Ty
    vm_region_submap_short_info_64_t
  • Ty
    vm_region_submap_short_info_data_64_t
  • Ty
    mach_vm_read_entry_t
  • Ty
    vm_read_entry_t
  • Ty
    vm_page_info_t
  • Ty
    vm_page_info_flavor_t
  • Ty
    vm_page_info_basic_t
  • Ty
    vm_page_info_basic_data_t
  • Ty
    vm_page_info_extended_data_t
  • Ty
    vm_page_info_extended_t
  • Ty
    vm_statistics_t
  • Ty
    vm_statistics_data_t
  • Ty
    vm_statistics64_t
  • Ty
    vm_statistics64_data_t
  • Ty
    vm_extmod_statistics_t
  • Ty
    vm_extmod_statistics_data_t
  • Ty
    vm_purgeable_stat_t
  • Ty
    vm_purgeable_info_t
  • Ty
    vm_page_disposition_t
  • Ty
    vm_sync_t
  • Ty
    pointer_t
  • Ty
    vm_address_t
  • Ty
    addr64_t
  • Ty
    reg64_t
  • Ty
    ppnum_t
  • Ty
    vm_map_t
  • Ty
    vm_map_read_t
  • Ty
    vm_map_inspect_t
  • Ty
    upl_t
  • Ty
    vm_named_entry_t
  • Ty
    mach_vm_offset_list_t
  • Ty
    vm_object_offset_t
  • Ty
    vm_object_size_t
  • Ty
    mach_vm_range_t
    @typedef mach_vm_range_t
  • Ty
    mach_vm_range_recipe_t
  • Ty
    mach_vm_range_recipes_raw_t
  • Ty
    Dl_info
    Structure filled in by dladdr().
  • Ty
    Dl_info_t
  • Ty
    fsignatures_t
  • Ty
    fsupplement_t
  • Ty
    fchecklv_t
  • Ty
    fgetsigsinfo_t
  • Ty
    fstore_t
  • Ty
    fpunchhole_t
  • Ty
    ftrimactivefile_t
  • Ty
    fspecread_t
  • Ty
    fattributiontag_t
  • Ty
    __iconv_bool
  • Ty
    iconv_t
  • Ty
    iconv_unicode_char_hook
  • Ty
    iconv_wide_char_hook
  • Ty
    iconv_unicode_mb_to_uc_fallback
  • Ty
    iconv_unicode_uc_to_mb_fallback
  • Ty
    iconv_wchar_mb_to_wc_fallback
  • Ty
    iconv_wchar_wc_to_mb_fallback
  • Ty
    in6_addr_t
  • Ty
    tcp_seq
  • Ty
    tcp_cc
  • Ty
    nfds_t
  • Ty
    regoff_t
  • Ty
    ENTRY
  • Ty
    posix_spawnattr_t
  • Ty
    posix_spawn_file_actions_t
  • Ty
    msgqnum_t
  • Ty
    msglen_t
  • Ty
    semun_t
  • Ty
    shmatt_t
  • Ty
    sae_associd_t
  • Ty
    sae_connid_t
  • Ty
    sa_endpoints_t
  • Ty
    filesec_t
  • Ty
    fsid_t
  • Ty
    fsobj_id_t
  • Ty
    secure_boot_cryptex_args_t
  • Ty
    graftdmg_args_un
  • Ty
    mount_t
  • Ty
    sa_family_t
  • Ty
    socklen_t
  • Ty
    ucontext64_t
  • Ty
    vnode_t
  • Ty
    vsock_gen_t
  • Ty
    tcflag_t
  • Ty
    cc_t
  • Ty
    speed_t
  • Ty
    NXSwappedFloat
  • Ty
    NXSwappedDouble
  • Ty
    bank_action_t
  • Ty
    au_id_t
  • Ty
    au_asid_t
  • Ty
    au_event_t
  • Ty
    au_emod_t
  • Ty
    au_class_t
  • Ty
    au_asflgs_t
  • Ty
    au_ctlmode_t
  • Ty
    au_tid_t
  • Ty
    au_tid_addr_t
  • Ty
    au_mask_t
  • Ty
    auditinfo_t
  • Ty
    auditinfo_addr_t
  • Ty
    auditpinfo_t
  • Ty
    auditpinfo_addr_t
  • Ty
    au_session_t
  • Ty
    au_expire_after_t
  • Ty
    token_t
  • Ty
    au_qctrl_t
  • Ty
    au_stat_t
  • Ty
    au_fstat_t
  • Ty
    au_evclass_map_t
  • Ty
    audit_filter_attach_t
  • Ty
    audit_filter_reinit_t
  • Ty
    audit_filter_record_t
  • Ty
    audit_filter_rawrecord_t
  • Ty
    audit_filter_detach_t
  • Ty
    au_sdev_handle_t
  • Ty
    au_event_ent_t
  • Ty
    au_class_ent_t
  • Ty
    au_user_ent_t
  • Ty
    au_tid32_t
  • Ty
    au_tid64_t
  • Ty
    au_tidaddr32_t
  • Ty
    au_tidaddr64_t
  • Ty
    tokenstr_t
  • Ty
    io_buf_ptr_t
  • Ty
    io_name_t
  • Ty
    io_string_t
  • Ty
    io_string_inband_t
  • Ty
    io_struct_inband_t
  • Ty
    io_user_scalar_t
  • Ty
    io_user_reference_t
  • Ty
    io_scalar_inband_t
  • Ty
    io_async_ref_t
  • Ty
    io_scalar_inband64_t
  • Ty
    io_async_ref64_t
  • Ty
    io_object_t
  • Ty
    FTSENT
  • Ty
    HFSExtentRecord
  • Ty
    HFSPlusExtentRecord
  • Ty
    ConstHFSUniStr255Param
  • Ty
    OSAtomic_int64_aligned64_t
  • Ty
    OSSpinLock
    @abstract Data type for a spinlock.
  • Ty
    fasttrap_machtp_t
  • Ty
    malloc_zone_t
  • Ty
    memory_reader_t
  • Ty
    vm_range_recorder_t
  • Ty
    bpf_int32
  • Ty
    bpf_u_int32
  • Ty
    ether_header_t
  • Ty
    ether_addr_t
  • Ty
    inp_gen_t
  • Ty
    n_short
  • Ty
    n_long
  • Ty
    n_time
  • Ty
    os_function_t
  • Ty
    os_block_t
    @typedef os_block_t
  • Ty
    os_unfair_lock
    @typedef os_unfair_lock
  • Ty
    os_unfair_lock_t
    @typedef os_unfair_lock
  • Ty
    comp_t
  • Ty
    acl_t
  • Ty
    acl_entry_t
  • Ty
    acl_permset_t
  • Ty
    acl_flagset_t
  • Ty
    acl_permset_mask_t
  • Ty
    text_encoding_t
  • Ty
    fsobj_type_t
  • Ty
    fsobj_tag_t
  • Ty
    fsfile_type_t
  • Ty
    fsvolid_t
  • Ty
    attrgroup_t
  • Ty
    attribute_set_t
  • Ty
    attrreference_t
  • Ty
    extentrecord
  • Ty
    vol_capabilities_set_t
  • Ty
    vol_capabilities_attr_t
  • Ty
    vol_attributes_attr_t
  • Ty
    er_t
  • Ty
    fileport_t
  • Ty
    gmonhdr_t
  • Ty
    tostruct_t
  • Ty
    rawarc_t
  • Ty
    gmon_data_t
  • Ty
    rawarc_order_t
  • Ty
    kauth_ace_rights_t
  • Ty
    kauth_ace_t
  • Ty
    kauth_acl_t
  • Ty
    kauth_filesec_t
  • Ty
    daddr64_t
  • Ty
    buf_t
  • Ty
    file_t
  • Ty
    proc_t
  • Ty
    proc_ident_t
  • Ty
    uio_t
  • Ty
    vfs_context_t
  • Ty
    vfstable_t
  • Ty
    ifnet_t
  • Ty
    mbuf_t
  • Ty
    pkthdr_t
  • Ty
    socket_t
  • Ty
    sockopt_t
  • Ty
    ifaddr_t
  • Ty
    ifmultiaddr_t
  • Ty
    interface_filter_t
  • Ty
    route_t
  • Ty
    if_clone_t
  • Ty
    bufattr_t
  • Ty
    kauth_action_t
  • Ty
    mb_class_stat_t
  • Ty
    mb_stat_t
  • Ty
    fhandle_t
  • Ty
    netaddr_t
  • Ty
    proc_info_udata_t
  • Ty
    rbto_compare_nodes_fn
  • Ty
    rbto_compare_key_fn
  • Ty
    rb_node_t
  • Ty
    rb_tree_t
  • Ty
    sem_t
  • Ty
    so_gen_t
  • Ty
    kauth_cred_t
  • Ty
    posix_cred_t
  • Ty
    unp_gen_t
  • Ty
    io_compression_stats_t
  • Ty
    uuid_string_t
  • Ty
    Semaphore
  • 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
← Low-level, Kernel & Legacy