Searched refs:mcopy (Results 1 - 3 of 3) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/netinet6/
H A Dip6_forward.c97 struct mbuf *mcopy = NULL; local
171 mcopy = m_copy(m, 0, imin(m->m_pkthdr.len, ICMPV6_PLD_MAXLEN));
182 if (mcopy) {
186 m_freem(mcopy);
205 if (mcopy) {
209 m_freem(mcopy);
227 if (mcopy) {
231 m_freem(mcopy);
291 if (mcopy) {
295 m_freem(mcopy);
[all...]
H A Dipcomp_output.c113 struct mbuf *mcopy; local
171 mcopy = m_copym(m, 0, M_COPYALL, M_NOWAIT);
172 if (mcopy == NULL) {
178 m_freem(mcopy);
193 m_freem(mcopy);
200 m_freem(mcopy);
211 m_freem(mcopy);
225 m_freem(mcopy);
333 key_sa_recordxfer(sav, mcopy);
334 m_freem(mcopy);
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/netinet/
H A Dip_input.c2089 struct mbuf *mcopy; local
2158 MGET(mcopy, M_DONTWAIT, m->m_type);
2159 if (mcopy != NULL) {
2160 M_COPY_PKTHDR(mcopy, m);
2161 mcopy->m_len = imin((IP_VHL_HL(ip->ip_vhl) << 2) + 8,
2163 m_copydata(m, 0, mcopy->m_len, mtod(mcopy, caddr_t));
2235 if (mcopy) {
2236 ipflow_create(ipforward_rt, mcopy);
2237 m_freem(mcopy);
[all...]

Completed in 82 milliseconds