• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/osfmk/mach/

Lines Matching refs:port

103  * be the local node host port. In the set call, the host must the per-node
104 * host port for the node being affected.
106 #define host_get_host_port(host, port) \
108 HOST_LOCAL_NODE, HOST_PORT, (port)))
109 #define host_set_host_port(host, port) (KERN_INVALID_ARGUMENT)
111 #define host_get_host_priv_port(host, port) \
113 HOST_LOCAL_NODE, HOST_PRIV_PORT, (port)))
114 #define host_set_host_priv_port(host, port) (KERN_INVALID_ARGUMENT)
116 #define host_get_io_master_port(host, port) \
118 HOST_LOCAL_NODE, HOST_IO_MASTER_PORT, (port)))
119 #define host_set_io_master_port(host, port) (KERN_INVALID_ARGUMENT)
124 #define host_get_dynamic_pager_port(host, port) \
126 HOST_LOCAL_NODE, HOST_DYNAMIC_PAGER_PORT, (port)))
127 #define host_set_dynamic_pager_port(host, port) \
128 (host_set_special_port((host), HOST_DYNAMIC_PAGER_PORT, (port)))
130 #define host_get_audit_control_port(host, port) \
132 HOST_LOCAL_NODE, HOST_AUDIT_CONTROL_PORT, (port)))
133 #define host_set_audit_control_port(host, port) \
134 (host_set_special_port((host), HOST_AUDIT_CONTROL_PORT, (port)))
136 #define host_get_user_notification_port(host, port) \
138 HOST_LOCAL_NODE, HOST_USER_NOTIFICATION_PORT, (port)))
139 #define host_set_user_notification_port(host, port) \
140 (host_set_special_port((host), HOST_USER_NOTIFICATION_PORT, (port)))
142 #define host_get_lockd_port(host, port) \
144 HOST_LOCAL_NODE, HOST_LOCKD_PORT, (port)))
145 #define host_set_lockd_port(host, port) \
146 (host_set_special_port((host), HOST_LOCKD_PORT, (port)))
148 #define host_get_unfreed_port(host, port) \
150 HOST_LOCAL_NODE, HOST_UNFREED_PORT, (port)))
151 #define host_set_unfreed_port(host, port) \
152 (host_set_special_port((host), HOST_UNFREED_PORT, (port)))
154 #define host_get_amfid_port(host, port) \
156 HOST_LOCAL_NODE, HOST_AMFID_PORT, (port)))
157 #define host_set_amfid_port(host, port) \
158 (host_set_special_port((host), HOST_AMFID_PORT, (port)))