- t2ex
- bsd_source/t2ex/network/net/src_bsd/kern/uipc_socket.c - 76.4KB - 2,408 lines
1312: if (paddr)
1313: *paddr = m_copy(m, 0, m->m_len);
1314: m = m->m_next;
- More results from uipc_socket.c
- bsd_source/t2ex/network/net/src_bsd/net/if_ethersubr.c - 51.3KB - 1,589 lines
301: if ((m->m_flags & M_BCAST) && (ifp->if_flags & IFF_SIMPLEX))
302: mcopy = m_copy(m, 0, (int)M_COPYALL);
303: etype = htons(ETHERTYPE_IP);
- More results from if_ethersubr.c
- bsd_source/t2ex/network/net/src_bsd/net/raw_usrreq.c - 9.6KB - 338 lines
136: struct mbuf *n;
137: if ((n = m_copy(m, 0, M_COPYALL)) == NULL)
138: ;