Searched refs:family (Results 1 - 25 of 26) sorted by relevance

12

/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Duipc_domain.c161 kprintf("Adding domain %s (family %d)\n", dp->dom_name,
360 pffindtype(int family, int type) argument
367 dp = pffinddomain_locked(family);
394 pffindproto(int family, int protocol, int type) argument
399 pr = pffindproto_locked(family, protocol, type);
405 pffindproto_locked(int family, int protocol, int type) argument
411 if (family == 0)
413 dp = pffinddomain_locked(family);
429 pffindprotonotype_locked(int family, int protocol, __unused int type) argument
434 if (family
449 pffindprotonotype(int family, int protocol) argument
468 int family, protocol, error; local
[all...]
H A Dsocket_info.c99 int family; local
112 /* The kind of socket is determined by the triplet {family, type, protocol} */
113 family = so->so_proto->pr_domain->dom_family;
116 switch (family) {
/macosx-10.5.8/xnu-1228.15.4/bsd/net/
H A Dkpi_interface.c106 if (init->family == 0)
116 error = dlil_if_acquire(init->family, init->uniqueid, init->uniqueid_len, &ifp);
126 ifp->if_family = init->family;
759 sa_family_t family)
780 if (family == 0 || addr->ifa_addr->sa_family == family)
811 if (family == 0 || addr->ifa_addr->sa_family == family) {
1090 ifnet_list_get(ifnet_family_t family, ifnet_t **list, u_int32_t *count) argument
1092 return (ifnet_list_get_common(family, FALS
756 ifnet_get_address_list_family( ifnet_t interface, ifaddr_t **addresses, sa_family_t family) argument
1096 ifnet_list_get_all(ifnet_family_t family, ifnet_t **list, u_int32_t *count) argument
1102 ifnet_list_get_common(ifnet_family_t family, boolean_t get_all, ifnet_t **list, u_int32_t *count) argument
[all...]
H A Ddlil.h176 int dlil_if_acquire(u_long family, const void *uniqueid, size_t uniqueid_len,
H A Dkpi_interface.h54 @constant IFNET_FAMILY_ANY Match interface of any family type.
90 @abstract Storage type for the interface family.
120 @abstract Storage type for the protocol family.
208 @param proto_family The protocol family to handle the ioctl, may be
243 which protocol family the packet belongs to. This information is then
246 not attached. If the protocol family has not been attached to the
251 @param protocol_family Upon return, the protocol family matching the
304 @param protocol_family The family of the protocol being attached.
307 to this protocol family.
325 @param protocol_family The family o
577 ifnet_family_t family; /* required */ member in struct:ifnet_init_params
[all...]
H A Dif_loop.c231 /* We need to prepend the address family as a four byte field. */
453 lo_init.family = IFNET_FAMILY_LOOPBACK;
H A Dndrv.c89 static void ndrv_handle_ifp_detach(u_long family, short unit);
261 * within that protocol family (assuming there's
835 ndrv_handle_ifp_detach(u_long family, short unit) argument
843 if (np->nd_family == family &&
H A Ddlil.c315 * the hash bucket index and the protocol family defined
1038 /* find which protocol family this packet is for */
1200 static int dlil_get_socket_type(struct mbuf **mp, int family, int raw) argument
1208 switch (family) {
1621 * interface family, or interface.
1677 * already handled this in the protocol or family.
2038 * Call family module add_proto routine so it can refine the
2232 * Call family module del_proto
2448 DLIL_PRINTF("dlil Attempt to attach interface without family module - %ld\n",
2753 u_long family,
[all...]
H A Dif_gif.c303 gif_init.family = IFNET_FAMILY_GIF;
498 * specified address family.
H A Dif_stf.c298 stf_init.family = IFNET_FAMILY_STF;
507 /* We need to prepend the address family as a four byte field. */
735 /* We need to prepend the address family as a four byte field. */
742 * specified address family.
H A Dif.c551 * Return the first (primary) address of a given family on an interface.
554 ifa_ifpgetprimary(struct ifnet *ifp, int family) argument
560 if (ifa->ifa_addr->sa_family == family && ifa0 == NULL) {
749 * addresses in this address family.
2187 * for a given protocol family
H A Dif_vlan.c810 vlan_init.family = IFNET_FAMILY_VLAN;
1890 * DLIL interface family functions
H A Dif_bond.c1179 bond_init.family = IFNET_FAMILY_BOND;
3137 * DLIL interface family functions
/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Dprotosw.h341 * and arg is a `void *' argument used within a protocol family.
413 struct protosw *pffindproto(int family, int protocol, int type);
414 struct protosw *pffindproto_locked(int family, int protocol, int type);
415 struct protosw *pffindtype(int family, int type);
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet/
H A Din_gif.c105 int family,
125 switch (family) {
159 printf("in_gif_output: warning: unknown family %d passed\n",
160 family);
327 * we know that we are in IFF_UP, outer address available, and outer family
328 * matched the physical addr family. see gif_encapcheck().
103 in_gif_output( struct ifnet *ifp, int family, struct mbuf *m, __unused struct rtentry *rt) argument
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet6/
H A Din6_gif.c86 int family, /* family of the packet to be encapsulate. */
105 switch (family) {
138 printf("in6_gif_output: warning: unknown family %d passed\n",
139 family);
357 * we know that we are in IFF_UP, outer address available, and outer family
358 * matched the physical addr family. see gif_encapcheck().
84 in6_gif_output( struct ifnet *ifp, int family, struct mbuf *m, __unused struct rtentry *rt) argument
/macosx-10.5.8/xnu-1228.15.4/security/
H A Dmac_inet.c276 mac_inpcb_check_deliver(struct inpcb *inp, struct mbuf *m, int family, int type) argument
287 family, type);
H A Dmac_net.c409 mac_ifnet_check_transmit(struct ifnet *ifp, struct mbuf *mbuf, int family, argument
419 family, type);
H A Dmac_framework.h199 int family, int type);
209 int family, int type);
H A Dmac_policy.h957 @param family Address Family, AF_*
972 int family,
1097 @param family Address family, AF_*
1111 int family,
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/
H A Dmachine_check.c78 uint32_t family = cpuid_info()->cpuid_family; local
82 mca_family = family;
93 if (family == 0x0F) {
277 kdb_printf(" family: %d model: %d stepping: %d microcode: %d\n",
/macosx-10.5.8/xnu-1228.15.4/bsd/nfs/
H A Dnfs_srvcache.c172 * This function compares two net addresses by family and returns TRUE
175 * The AF_INET family is handled as a special case so that address mbufs
180 int family,
186 switch (family) {
179 netaddr_match( int family, union nethostaddr *haddr, mbuf_t nam) argument
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/i386/
H A Dsysctl.c168 SYSCTL_PROC(_machdep_cpu, OID_AUTO, family, CTLTYPE_INT | CTLFLAG_RD,
170 hw_cpu_sysctl, "I", "CPU family");
182 hw_cpu_sysctl, "I", "CPU extended family");
/macosx-10.5.8/xnu-1228.15.4/bsd/netkey/
H A Dkey.c654 ipseclog((LOG_ERR, "protocol family mismatched %d != %d\n.",
1033 key_allocsa(family, src, dst, proto, spi)
1034 u_int family, proto;
1081 if (family != sav->sah->saidx.src.ss_family ||
1082 family != sav->sah->saidx.dst.ss_family)
1097 switch (family) {
1126 "unknown address family=%d.\n",
1127 family));
1133 switch (family) {
1163 "unknown address family
8079 key_checktunnelsanity( struct secasvar *sav, __unused u_int family, __unused caddr_t src, __unused caddr_t dst) argument
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dstart.s659 ; 745X - Any 7450 family processor

Completed in 324 milliseconds

12