• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/xnu-2422.115.4/osfmk/mach/

Lines Matching refs:port

107  * be the local node host port. In the set call, the host must the per-node
108 * host port for the node being affected.
110 #define host_get_host_port(host, port) \
112 HOST_LOCAL_NODE, HOST_PORT, (port)))
113 #define host_set_host_port(host, port) (KERN_INVALID_ARGUMENT)
115 #define host_get_host_priv_port(host, port) \
117 HOST_LOCAL_NODE, HOST_PRIV_PORT, (port)))
118 #define host_set_host_priv_port(host, port) (KERN_INVALID_ARGUMENT)
120 #define host_get_io_master_port(host, port) \
122 HOST_LOCAL_NODE, HOST_IO_MASTER_PORT, (port)))
123 #define host_set_io_master_port(host, port) (KERN_INVALID_ARGUMENT)
128 #define host_get_dynamic_pager_port(host, port) \
130 HOST_LOCAL_NODE, HOST_DYNAMIC_PAGER_PORT, (port)))
131 #define host_set_dynamic_pager_port(host, port) \
132 (host_set_special_port((host), HOST_DYNAMIC_PAGER_PORT, (port)))
134 #define host_get_audit_control_port(host, port) \
136 HOST_LOCAL_NODE, HOST_AUDIT_CONTROL_PORT, (port)))
137 #define host_set_audit_control_port(host, port) \
138 (host_set_special_port((host), HOST_AUDIT_CONTROL_PORT, (port)))
140 #define host_get_user_notification_port(host, port) \
142 HOST_LOCAL_NODE, HOST_USER_NOTIFICATION_PORT, (port)))
143 #define host_set_user_notification_port(host, port) \
144 (host_set_special_port((host), HOST_USER_NOTIFICATION_PORT, (port)))
146 #define host_get_automountd_port(host, port) \
148 HOST_LOCAL_NODE, HOST_AUTOMOUNTD_PORT, (port)))
149 #define host_set_automountd_port(host, port) \
150 (host_set_special_port((host), HOST_AUTOMOUNTD_PORT, (port)))
152 #define host_get_lockd_port(host, port) \
154 HOST_LOCAL_NODE, HOST_LOCKD_PORT, (port)))
155 #define host_set_lockd_port(host, port) \
156 (host_set_special_port((host), HOST_LOCKD_PORT, (port)))
158 #define host_get_kextd_port(host, port) \
160 HOST_LOCAL_NODE, HOST_KEXTD_PORT, (port)))
161 #define host_set_kextd_port(host, port) \
162 (host_set_special_port((host), HOST_KEXTD_PORT, (port)))
164 #define host_get_chud_port(host, port) \
166 HOST_LOCAL_NODE, HOST_CHUD_PORT, (port)))
167 #define host_set_chud_port(host, port) \
168 (host_set_special_port((host), HOST_CHUD_PORT, (port)))
170 #define host_get_unfreed_port(host, port) \
172 HOST_LOCAL_NODE, HOST_UNFREED_PORT, (port)))
173 #define host_set_unfreed_port(host, port) \
174 (host_set_special_port((host), HOST_UNFREED_PORT, (port)))
176 #define host_get_amfid_port(host, port) \
178 HOST_LOCAL_NODE, HOST_AMFID_PORT, (port)))
179 #define host_set_amfid_port(host, port) \
180 (host_set_special_port((host), HOST_AMFID_PORT, (port)))
182 #define host_get_gssd_port(host, port) \
184 HOST_LOCAL_NODE, HOST_GSSD_PORT, (port)))
185 #define host_set_gssd_port(host, port) \
186 (host_set_special_port((host), HOST_GSSD_PORT, (port)))
188 #define host_get_telemetry_port(host, port) \
190 HOST_LOCAL_NODE, HOST_TELEMETRY_PORT, (port)))
191 #define host_set_telemetry_port(host, port) \
192 (host_set_special_port((host), HOST_TELEMETRY_PORT, (port)))