• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/xnu-2782.1.97/osfmk/mach/

Lines Matching refs:host

61  *	Defines codes for access to host-wide special ports.
108 * In the get call, the host parameter can be any host, but will generally
109 * be the local node host port. In the set call, the host must the per-node
110 * host port for the node being affected.
112 #define host_get_host_port(host, port) \
113 (host_get_special_port((host), \
115 #define host_set_host_port(host, port) (KERN_INVALID_ARGUMENT)
117 #define host_get_host_priv_port(host, port) \
118 (host_get_special_port((host), \
120 #define host_set_host_priv_port(host, port) (KERN_INVALID_ARGUMENT)
122 #define host_get_io_master_port(host, port) \
123 (host_get_special_port((host), \
125 #define host_set_io_master_port(host, port) (KERN_INVALID_ARGUMENT)
130 #define host_get_dynamic_pager_port(host, port) \
131 (host_get_special_port((host), \
133 #define host_set_dynamic_pager_port(host, port) \
134 (host_set_special_port((host), HOST_DYNAMIC_PAGER_PORT, (port)))
136 #define host_get_audit_control_port(host, port) \
137 (host_get_special_port((host), \
139 #define host_set_audit_control_port(host, port) \
140 (host_set_special_port((host), HOST_AUDIT_CONTROL_PORT, (port)))
142 #define host_get_user_notification_port(host, port) \
143 (host_get_special_port((host), \
145 #define host_set_user_notification_port(host, port) \
146 (host_set_special_port((host), HOST_USER_NOTIFICATION_PORT, (port)))
148 #define host_get_automountd_port(host, port) \
149 (host_get_special_port((host), \
151 #define host_set_automountd_port(host, port) \
152 (host_set_special_port((host), HOST_AUTOMOUNTD_PORT, (port)))
154 #define host_get_lockd_port(host, port) \
155 (host_get_special_port((host), \
157 #define host_set_lockd_port(host, port) \
158 (host_set_special_port((host), HOST_LOCKD_PORT, (port)))
160 #define host_get_kextd_port(host, port) \
161 (host_get_special_port((host), \
163 #define host_set_kextd_port(host, port) \
164 (host_set_special_port((host), HOST_KEXTD_PORT, (port)))
166 #define host_get_chud_port(host, port) \
167 (host_get_special_port((host), \
169 #define host_set_chud_port(host, port) \
170 (host_set_special_port((host), HOST_CHUD_PORT, (port)))
172 #define host_get_unfreed_port(host, port) \
173 (host_get_special_port((host), \
175 #define host_set_unfreed_port(host, port) \
176 (host_set_special_port((host), HOST_UNFREED_PORT, (port)))
178 #define host_get_amfid_port(host, port) \
179 (host_get_special_port((host), \
181 #define host_set_amfid_port(host, port) \
182 (host_set_special_port((host), HOST_AMFID_PORT, (port)))
184 #define host_get_gssd_port(host, port) \
185 (host_get_special_port((host), \
187 #define host_set_gssd_port(host, port) \
188 (host_set_special_port((host), HOST_GSSD_PORT, (port)))
190 #define host_get_telemetry_port(host, port) \
191 (host_get_special_port((host), \
193 #define host_set_telemetry_port(host, port) \
194 (host_set_special_port((host), HOST_TELEMETRY_PORT, (port)))
196 #define host_get_atm_notification_port(host, port) \
197 (host_get_special_port((host), \
199 #define host_set_atm_notification_port(host, port) \
200 (host_set_special_port((host), HOST_ATM_NOTIFICATION_PORT, (port)))
202 #define host_get_coalition_port(host, port) \
203 (host_get_special_port((host), \
205 #define host_set_coalition_port(host, port) \
206 (host_set_special_port((host), HOST_COALITION_PORT, (port)))