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

Lines Matching refs:host

61  *	Defines codes for access to host-wide special ports.
102 * In the get call, the host parameter can be any host, but will generally
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) \
107 (host_get_special_port((host), \
109 #define host_set_host_port(host, port) (KERN_INVALID_ARGUMENT)
111 #define host_get_host_priv_port(host, port) \
112 (host_get_special_port((host), \
114 #define host_set_host_priv_port(host, port) (KERN_INVALID_ARGUMENT)
116 #define host_get_io_master_port(host, port) \
117 (host_get_special_port((host), \
119 #define host_set_io_master_port(host, port) (KERN_INVALID_ARGUMENT)
124 #define host_get_dynamic_pager_port(host, port) \
125 (host_get_special_port((host), \
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) \
131 (host_get_special_port((host), \
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) \
137 (host_get_special_port((host), \
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) \
143 (host_get_special_port((host), \
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) \
149 (host_get_special_port((host), \
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) \
155 (host_get_special_port((host), \
157 #define host_set_amfid_port(host, port) \
158 (host_set_special_port((host), HOST_AMFID_PORT, (port)))