Searched refs:ports (Results 1 - 12 of 12) sorted by relevance

/darwin-on-arm/xnu/osfmk/ipc/
H A Dmig_log.c100 unsigned int ports,
109 size, kpd, retcode, ports, oolports, ool, file, line);
93 MigEventTracer( mig_who_t who, mig_which_event_t what, mach_msg_id_t msgh_id, unsigned int size, unsigned int kpd, unsigned int retcode, unsigned int ports, unsigned int oolports, unsigned int ool, char *file, unsigned int line) argument
/darwin-on-arm/xnu/tools/tests/MPMMTest/
H A DMPMMtest.c101 fprintf(stderr, " -set num\t\tuse a portset stuffed with num ports in server\n");
213 void setup_server_ports(struct port_args *ports) argument
220 ports->req_size = MAX(sizeof(ipc_inline_message) +
223 ports->reply_size = sizeof(ipc_trivial_message) -
225 ports->req_msg = malloc(ports->req_size);
226 ports->reply_msg = malloc(ports->reply_size);
231 &(ports->set));
238 /* stuff the portset with ports */
290 setup_client_ports(struct port_args *ports) argument
[all...]
H A DKQMPMMtest.c210 void setup_server_ports(struct port_args *ports) argument
215 ports->req_size = MAX(sizeof(ipc_inline_message) +
218 ports->reply_size = sizeof(ipc_trivial_message) -
220 ports->req_msg = malloc(ports->req_size);
221 ports->reply_msg = malloc(ports->reply_size);
225 &(ports->port));
233 &(ports->pset));
240 ports
275 setup_client_ports(struct port_args *ports) argument
[all...]
/darwin-on-arm/xnu/osfmk/mach/
H A Dmig_log.h65 unsigned int ports,
/darwin-on-arm/xnu/osfmk/kern/
H A Dipc_tt.c178 /* inherit registered ports */
184 /* inherit exception and bootstrap ports */
328 /* destroy the kernel ports */
488 * Both the thread port and its exception ports have
712 * special ports.
759 * Changes one of the thread's special ports,
814 * special ports.
879 * Changes one of the task's special ports,
935 /* do not allow overwrite of seatbelt or task access ports */
984 ipc_port_t ports[TASK_PORT_REGISTER_MA local
1059 ipc_port_t *ports; local
1635 thread_swap_exception_ports( thread_t thread, exception_mask_t exception_mask, ipc_port_t new_port, exception_behavior_t new_behavior, thread_state_flavor_t new_flavor, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
1731 task_swap_exception_ports( task_t task, exception_mask_t exception_mask, ipc_port_t new_port, exception_behavior_t new_behavior, thread_state_flavor_t new_flavor, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
1845 thread_get_exception_ports( thread_t thread, exception_mask_t exception_mask, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
1907 task_get_exception_ports( task_t task, exception_mask_t exception_mask, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
[all...]
H A Dipc_host.c62 * Routines to implement host ports.
103 * Allocate and set up the two host ports.
129 /* the rest of the special ports will be set up later */
207 * Initialize ipc control of a processor set by allocating its ports.
243 * Return ports for manipulating default_processor set.
600 * ports specified in the mask and returns the behaviour
620 exception_port_array_t ports,
646 if (host_priv->exc_actions[i].port == ports[j] &&
656 ports[j] =
682 exception_port_array_t ports,
615 host_get_exception_ports( host_priv_t host_priv, exception_mask_t exception_mask, exception_mask_array_t masks, mach_msg_type_number_t * CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors ) argument
674 host_swap_exception_ports( host_priv_t host_priv, exception_mask_t exception_mask, ipc_port_t new_port, exception_behavior_t new_behavior, thread_state_flavor_t new_flavor, exception_mask_array_t masks, mach_msg_type_number_t * CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors ) argument
[all...]
/darwin-on-arm/xnu/bsd/netinet/
H A Dip_fw2_compat.c519 uint16_t *p = ((ipfw_insn_u16 *)cmd)->ports;
547 uint16_t *p = ((ipfw_insn_u16 *)cmd)->ports;
618 uint16_t *p = ((ipfw_insn_u16 *)cmd)->ports;
637 uint16_t *p = ((ipfw_insn_u16 *)cmd)->ports;
664 uint16_t *p = ((ipfw_insn_u16 *)cmd)->ports;
878 /* source ports */
879 ipfw_insn_u16 *ports = (ipfw_insn_u16 *)cmd; local
880 uint16_t *p = ports->ports;
883 /* copy list of ports */
934 ipfw_insn_u16 *ports = (ipfw_insn_u16 *)cmd; local
1158 ipfw_insn_u16 *ports = (ipfw_insn_u16 *)cmd; local
1213 ipfw_insn_u16 *ports = (ipfw_insn_u16 *)cmd; local
2151 ipfw_insn_u16 *ports = (ipfw_insn_u16 *)cmd; local
2224 ipfw_insn_u16 *ports = (ipfw_insn_u16 *)cmd; local
2694 ipfw_insn_u16 *ports = (ipfw_insn_u16 *)cmd; local
2767 ipfw_insn_u16 *ports = (ipfw_insn_u16 *)cmd; local
[all...]
H A Dip_fw2.h242 * This is used to store an array of 16-bit entries (ports etc.)
246 u_int16_t ports[2]; /* there may be more */ member in struct:_ipfw_insn_u16
H A Dip_fw2.c1755 * direction), swap src and destination addresses and ports.
2203 * packet with the ports info.
2293 ((ipfw_insn_u16 *)cmd)->ports;
2397 ((ipfw_insn_u16 *)cmd)->ports;
2438 p = ((ipfw_insn_u16 *)cmd)->ports;
/darwin-on-arm/xnu/osfmk/default_pager/
H A Ddefault_pager_object.defs91 out ports : mach_port_array_t =
/darwin-on-arm/xnu/libsyscall/mach/
H A Dmach_msg.c329 mach_port_t *ports; local
337 ports = (mach_port_t *) dsc->address;
338 for (j = 0; j < dsc->count; j++, ports++) {
339 mach_msg_destroy_port(*ports, dsc->disposition);
/darwin-on-arm/xnu/iokit/Kernel/
H A DIOUserClient.cpp143 // IOMachPort maps OSObjects to ports, avoiding adding an ivar to OSObject.
484 mach_msg_port_descriptor_t ports[1]; member in struct:IOServiceMessageUserNotification::PingMsg
753 pingMsg->ports[0].name = 0;
754 pingMsg->ports[0].disposition = MACH_MSG_TYPE_MAKE_SEND;
755 pingMsg->ports[0].type = MACH_MSG_PORT_DESCRIPTOR;
831 pingMsg->ports[0].name = providerPort;

Completed in 70 milliseconds