Lines Matching refs:host

61  *	Defines codes for access to host-wide special ports.
105 * In the get call, the host parameter can be any host, but will generally
106 * be the local node host port. In the set call, the host must the per-node
107 * host port for the node being affected.
109 #define host_get_host_port(host, port) \
110 (host_get_special_port((host), \
112 #define host_set_host_port(host, port) (KERN_INVALID_ARGUMENT)
114 #define host_get_host_priv_port(host, port) \
115 (host_get_special_port((host), \
117 #define host_set_host_priv_port(host, port) (KERN_INVALID_ARGUMENT)
119 #define host_get_io_master_port(host, port) \
120 (host_get_special_port((host), \
122 #define host_set_io_master_port(host, port) (KERN_INVALID_ARGUMENT)
127 #define host_get_dynamic_pager_port(host, port) \
128 (host_get_special_port((host), \
130 #define host_set_dynamic_pager_port(host, port) \
131 (host_set_special_port((host), HOST_DYNAMIC_PAGER_PORT, (port)))
133 #define host_get_audit_control_port(host, port) \
134 (host_get_special_port((host), \
136 #define host_set_audit_control_port(host, port) \
137 (host_set_special_port((host), HOST_AUDIT_CONTROL_PORT, (port)))
139 #define host_get_user_notification_port(host, port) \
140 (host_get_special_port((host), \
142 #define host_set_user_notification_port(host, port) \
143 (host_set_special_port((host), HOST_USER_NOTIFICATION_PORT, (port)))
145 #define host_get_automountd_port(host, port) \
146 (host_get_special_port((host), \
148 #define host_set_automountd_port(host, port) \
149 (host_set_special_port((host), HOST_AUTOMOUNTD_PORT, (port)))
151 #define host_get_lockd_port(host, port) \
152 (host_get_special_port((host), \
154 #define host_set_lockd_port(host, port) \
155 (host_set_special_port((host), HOST_LOCKD_PORT, (port)))
157 #define host_get_kextd_port(host, port) \
158 (host_get_special_port((host), \
160 #define host_set_kextd_port(host, port) \
161 (host_set_special_port((host), HOST_KEXTD_PORT, (port)))
163 #define host_get_chud_port(host, port) \
164 (host_get_special_port((host), \
166 #define host_set_chud_port(host, port) \
167 (host_set_special_port((host), HOST_CHUD_PORT, (port)))
169 #define host_get_unfreed_port(host, port) \
170 (host_get_special_port((host), \
172 #define host_set_unfreed_port(host, port) \
173 (host_set_special_port((host), HOST_UNFREED_PORT, (port)))
175 #define host_get_amfid_port(host, port) \
176 (host_get_special_port((host), \
178 #define host_set_amfid_port(host, port) \
179 (host_set_special_port((host), HOST_AMFID_PORT, (port)))
181 #define host_get_gssd_port(host, port) \
182 (host_get_special_port((host), \
185 #define host_set_gssd_port(host, port) \
186 (host_set_special_port((host), HOST_GSSD_PORT, (port)))