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

12

/xnu-2422.115.4/bsd/net/
H A Dif_utun_crypto_dtls.h103 utun_pkt_dtls_input(struct utun_pcb *pcb, mbuf_t *pkt, protocol_family_t family);
116 utun_crypto_framer_protocol_family_to_inner_type (protocol_family_t family) argument
118 if (family == PF_INET) {
H A Dif_utun_crypto_ipsec.h101 utun_pkt_ipsec_input(struct utun_pcb *pcb, mbuf_t *pkt, protocol_family_t family);
H A Dkpi_interface.c131 einit.family = init->family;
164 if (einit.family == 0 || einit.name == NULL ||
196 error = dlil_if_acquire(einit.family, einit.uniqueid,
209 ifp->if_family = einit.family;
804 ifnet_set_tso_mtu(ifnet_t interface, sa_family_t family, u_int32_t mtuLen) argument
811 switch (family) {
835 ifnet_get_tso_mtu(ifnet_t interface, sa_family_t family, u_int32_t *mtuLen) argument
842 switch (family) {
1476 sa_family_t family)
1475 ifnet_get_address_list_family(ifnet_t interface, ifaddr_t **addresses, sa_family_t family) argument
1495 ifnet_get_address_list_family_internal(ifnet_t interface, ifaddr_t **addresses, sa_family_t family, int detached, int how, int return_inuse_addrs) argument
1928 ifnet_list_get(ifnet_family_t family, ifnet_t **list, u_int32_t *count) argument
1934 ifnet_list_get_all(ifnet_family_t family, ifnet_t **list, u_int32_t *count) argument
1945 ifnet_list_get_common(ifnet_family_t family, boolean_t get_all, ifnet_t **list, u_int32_t *count) argument
2141 sa_family_t family = 0; local
[all...]
H A Dkpi_interface.h70 @constant IFNET_FAMILY_ANY Match interface of any family type.
108 @abstract Storage type for the interface family.
119 interface family, e.g. Ethernet over Wi-Fi/USB, etc.
131 @abstract Storage type for the interface sub-family.
162 @abstract Storage type for the protocol family.
285 @param proto_family The protocol family to handle the ioctl, may be
321 determine which protocol family the packet belongs to. This
325 protocol family has not been attached to the interface, the
330 @param protocol_family Upon return, the protocol family matching the
399 @param protocol_family The family o
672 ifnet_family_t family; /* required */ member in struct:ifnet_init_params
1032 ifnet_family_t family; /* required */ member in struct:ifnet_init_eparams
[all...]
H A Dif_utun_crypto_dtls.c186 protocol_family_t family,
193 for (cur_framer = utun_ctl_get_first_framer(crypto_ctx, utun_crypto_framer_protocol_family_to_inner_type(family));
988 utun_pkt_dtls_input(struct utun_pcb *pcb, mbuf_t *pkt, __unused protocol_family_t family) argument
993 //printf("%s: got pkt %d\n", __FUNCTION__,family);
1007 * make sure that family matches what the UTUN was configured for (punt those that don't... along with all that fail to match the data pattern.
1016 utun_pkt_dtls_prepend_proto(pkt, family);
1038 utun_pkt_dtls_prepend_proto(pkt, family);
184 utun_pkt_dtls_input_frame_is_data(utun_crypto_ctx_t *crypto_ctx, mbuf_t *pkt, protocol_family_t family, int *striplen) argument
H A Dif_pflog.c159 pf_init.family = IFNET_FAMILY_LOOPBACK;
H A Dndrv.c93 static void ndrv_handle_ifp_detach(u_int32_t family, short unit);
266 * within that protocol family (assuming there's
841 ndrv_handle_ifp_detach(u_int32_t family, short unit) argument
849 if (np->nd_family == family &&
H A Dif_utun_crypto_ipsec.c1046 utun_pkt_ipsec_input (struct utun_pcb *pcb, mbuf_t *pkt, protocol_family_t family) argument
1067 *(protocol_family_t *)mbuf_data(*pkt) = family;
H A Dif_loop.c639 lo_init.family = IFNET_FAMILY_LOOPBACK;
H A Dif_stf.c346 stf_init.family = IFNET_FAMILY_STF;
576 /* We need to prepend the address family as a four byte field. */
810 /* We need to prepend the address family as a four byte field. */
817 * specified address family.
H A Diptap.c208 if_init.family = IFNET_FAMILY_LOOPBACK;
/xnu-2422.115.4/tools/tests/libMicro/
H A Dsocket.c47 static int family; variable
73 " [-f socket-family (default %s)]\n"
99 family = lookup_family(optf);
136 ts->ts_fds[i] = socket(family, SOCK_STREAM, 0);
/xnu-2422.115.4/bsd/kern/
H A Duipc_domain.c278 panic("%s: unable to allocate memory for domain family "
763 pffindtype(int family, int type) argument
770 if ((dp = pffinddomain_locked(family)) == NULL)
818 pffindproto(int family, int protocol, int type) argument
824 pp = pffindproto_locked(family, protocol, type);
830 pffindproto_locked(int family, int protocol, int type) argument
838 if (family == 0)
841 dp = pffinddomain_locked(family);
860 pffindproto_old(int family, int protocol, int type) argument
867 if ((pp = pffindproto_locked(family, protoco
875 pffindprotonotype_locked(int family, int protocol, int type) argument
898 pffindprotonotype(int family, int protocol) argument
917 int family, protocol, error = 0; local
[all...]
H A Dkpi_mbuf.c949 mbuf_add_drvaux(mbuf_t mbuf, mbuf_how_t how, u_int32_t family, argument
973 p->da_family = family;
/xnu-2422.115.4/bsd/netkey/
H A Dkeydb.h42 /* NOTE: Ensure to be same address family */
72 typedef int (*utun_input_func) __P((void *, void *, protocol_family_t family));
/xnu-2422.115.4/bsd/netinet/
H A Din_gif.c103 int family,
129 switch (family) {
163 printf("in_gif_output: warning: unknown family %d passed\n",
164 family);
319 * We know that we are in IFF_UP, outer address available, and outer family
320 * matched the physical addr family. see gif_encapcheck().
101 in_gif_output( struct ifnet *ifp, int family, struct mbuf *m, __unused struct rtentry *rt) argument
/xnu-2422.115.4/bsd/netinet6/
H A Din6_gif.c101 int family, /* family of the packet to be encapsulate. */
124 switch (family) {
157 printf("in6_gif_output: warning: unknown family %d passed\n",
158 family);
372 * we know that we are in IFF_UP, outer address available, and outer family
373 * matched the physical addr family. see gif_encapcheck().
99 in6_gif_output( struct ifnet *ifp, int family, struct mbuf *m, __unused struct rtentry *rt) argument
/xnu-2422.115.4/bsd/dev/dtrace/scripts/
H A Dmptcp.d213 uint32_t family;
225 family = T->mpts_family;
/xnu-2422.115.4/osfmk/i386/
H A Dmachine_check.c89 uint32_t family = cpuid_info()->cpuid_family; local
100 mca_family = family;
245 kdb_printf(" family: %d model: %d stepping: %d microcode: %d\n",
/xnu-2422.115.4/security/
H A Dmac_inet.c274 mac_inpcb_check_deliver(struct inpcb *inp, struct mbuf *m, int family, int type) argument
285 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.h216 int family, int type);
226 int family, int type);
/xnu-2422.115.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
181 int family,
188 switch (family) {
180 netaddr_match( int family, union nethostaddr *haddr, mbuf_t nam) argument
/xnu-2422.115.4/bsd/sys/
H A Dkpi_mbuf.h1048 the caller must pass the protocol family of the packet as well
1052 @param protocol_family The protocol family of the packet in the
1067 @param vlan The protocol family of the aux data to add.
1080 @param vlan The protocol family of the aux data to add.
1355 data depend largely on the family and sub-family. The system
1362 @param family The interface family as defined in net/kpi_interface.h.
1363 @param subfamily The interface sub-family as defined in
1371 u_int32_t family, u_int32_
[all...]
H A Dprotosw.h272 * and arg is a `void *' argument used within a protocol family.
545 extern struct protosw *pffindproto(int family, int protocol, int type);

Completed in 274 milliseconds

12