gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 10 of 10 for funcall:MGETHDR (0.01 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf.c - 57.8KB - 1,910 lines
1162:         if (copyhdr && (m0->m_flags & M_PKTHDR)) {
1163:                 MGETHDR(n, wait, m0->m_type);
1164:                 if (n == 0)
More results from uipc_mbuf.c
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf2.c - 12.9KB - 420 lines
239:         if ((flags & M_PKTHDR) != 0)
240:                 MGETHDR(mp, how, type);
241:         else
bsd_source/t2ex/network/net/src_bsd/kern/uipc_socket2.c - 45.7KB - 1,544 lines
1074:         /* only the first in each chain need be a pkthdr */
1075:         MGETHDR(m, M_DONTWAIT, MT_SONAME);
1076:         if (m == 0)
bsd_source/t2ex/network/net/src_bsd/net/if_tun.c - 33.3KB - 1,241 lines
1014:         /* get a header mbuf */
1015:         MGETHDR(m, M_DONTWAIT, MT_DATA);
1016:         if (m == NULL) {
bsd_source/t2ex/network/net/src_bsd/netinet/igmp.c - 22.5KB - 665 lines
573: 
574:         MGETHDR(m, M_DONTWAIT, MT_HEADER);
575:         if (m == NULL)
bsd_source/t2ex/network/net/src_bsd/netinet/ip_output.c - 67.3KB - 1,940 lines
976:         for (off = hlen + len; off < ntohs(ip->ip_len); off += len) {
977:                 MGETHDR(m, M_DONTWAIT, MT_HEADER);
978:                 if (m == 0) {
More results from ip_output.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c - 167.0KB - 4,503 lines
1392:                         } else {
1393:                                 MGETHDR(tcp_saveti, M_DONTWAIT, MT_HEADER);
1394:                                 if (!tcp_saveti)
More results from tcp_input.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_output.c - 62.9KB - 1,704 lines
457: #else
458:         MGETHDR(m, M_DONTWAIT, MT_HEADER);
459:         if (__predict_false(m == NULL))
More results from tcp_output.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_subr.c - 84.9KB - 2,586 lines
621:                 m = tp->t_template = NULL;
622:                 MGETHDR(m, M_DONTWAIT, MT_HEADER);
623:                 if (m && hlen + sizeof(struct tcphdr) > MHLEN) {
More results from tcp_subr.c
t2ex_source/t2ex/network/net/src/netmain/if_tkn.c - 28.4KB - 1,184 lines
1060:         struct mbuf *m;
1061:         MGETHDR(m, M_DONTWAIT, MT_DATA);
1062:         if (m == NULL)