Home
last modified time | relevance | path

Searched refs:mig_callback (Results 1 – 2 of 2) sorted by relevance

/NextBSD/sbin/launchd/
HDruntime.h51 typedef boolean_t (*mig_callback)(mach_msg_header_t *, mach_msg_header_t *); typedef
98 kern_return_t runtime_add_mport(mach_port_t name, mig_callback demux);
HDruntime.c106 static mig_callback *mig_cb_table;
807 runtime_add_mport(mach_port_t name, mig_callback demux) in runtime_add_mport()
809 size_t needed_table_sz = (MACH_PORT_INDEX(name) + 1) * sizeof(mig_callback); in runtime_add_mport()
814 mig_callback *new_table = malloc(needed_table_sz); in runtime_add_mport()
1117 mig_callback the_demux = mig_cb_table[MACH_PORT_INDEX(request->msgh_local_port)]; in launchd_mig_demux()