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

/freebsd-9.3-release/sys/netinet6/
H A Dip6_forward.c100 struct mbuf *mcopy = NULL; local
178 mcopy = m_copy(m, 0, imin(m->m_pkthdr.len, ICMPV6_PLD_MAXLEN));
187 if (mcopy) {
191 m_freem(mcopy);
209 if (mcopy) {
213 m_freem(mcopy);
231 if (mcopy) {
235 m_freem(mcopy);
314 if (mcopy) {
318 m_freem(mcopy);
[all...]
/freebsd-9.3-release/sys/net80211/
H A Dieee80211_wds.c240 struct mbuf *mcopy; local
259 mcopy = m_copypacket(m, M_DONTWAIT);
260 if (mcopy == NULL) {
269 m_freem(mcopy);
273 if (ieee80211_classify(ni, mcopy)) {
280 m_freem(mcopy);
290 mcopy = ieee80211_encap(vap, ni, mcopy);
291 if (mcopy == NULL) {
296 mcopy
[all...]
H A Dieee80211_mesh.c856 struct mbuf *mcopy; local
874 mcopy = m_dup(m, M_DONTWAIT);
875 if (mcopy == NULL) {
882 mcopy = m_pullup(mcopy, ieee80211_hdrspace(ic, wh) +
884 if (mcopy == NULL) {
889 m_freem(mcopy);
892 whcopy = mtod(mcopy, struct ieee80211_frame *);
894 (mtod(mcopy, uint8_t *) + ieee80211_hdrspace(ic, wh));
900 mcopy
[all...]
H A Dieee80211_input.c116 struct mbuf *mcopy; local
134 mcopy = m_dup(m, M_DONTWAIT);
135 if (mcopy == NULL) {
140 mcopy = m;
144 type = ieee80211_input_mimo(ni, mcopy, rx);
H A Dieee80211_hostap.c376 struct mbuf *mcopy = NULL; local
379 mcopy = m_dup(m, M_DONTWAIT);
380 if (mcopy == NULL)
383 mcopy->m_flags |= M_MCAST;
402 mcopy = m;
412 if (mcopy != NULL) {
414 len = mcopy->m_pkthdr.len;
415 err = ifp->if_transmit(ifp, mcopy);
417 /* NB: IFQ_HANDOFF reclaims mcopy */
/freebsd-9.3-release/sys/netinet/
H A Dip_input.c1370 struct mbuf *mcopy; local
1421 MGETHDR(mcopy, M_DONTWAIT, m->m_type);
1422 if (mcopy != NULL && !m_dup_pkthdr(mcopy, m, M_DONTWAIT)) {
1429 m_free(mcopy);
1430 mcopy = NULL;
1432 if (mcopy != NULL) {
1433 mcopy->m_len = min(ip->ip_len, M_TRAILINGSPACE(mcopy));
1434 mcopy
[all...]
/freebsd-9.3-release/contrib/file/src/
H A Dsoftmagic.c55 private int mcopy(struct magic_set *, union VALUETYPE *, int, int,
1082 mcopy(struct magic_set *ms, union VALUETYPE *p, int type, int indir, function
1228 if (mcopy(ms, p, m->type, m->flag & INDIR, s, (uint32_t)(offset + o),
1602 if (mcopy(ms, p, m->type, 0, s, offset, nbytes, m) == -1)
/freebsd-9.3-release/contrib/cvs/src/
H A Dsanity.sh1191 tests="${tests} mcopy binwrap binwrap2"
17553 mcopy)
17576 dotest mcopy-1 "${testcvs} -q co first-dir" ''
17586 dotest mcopy-1a \
17593 dotest mcopy-1b "${testcvs} -q ci -m add" \
17625 dotest mcopy-2 "${testcvs} -q tag -b br" 'T \.cvswrappers
17629 dotest mcopy-3 "$testcvs -q update -r br" \
17637 dotest mcopy-5 "${testcvs} -q ci -m br-changes" \
17650 dotest mcopy-6 "$testcvs -q update -A" \
17655 dotest mcopy
[all...]

Completed in 317 milliseconds