gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 8 of 8 for funcall:MCLGET (0.02 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf.c - 57.8KB - 1,910 lines
663: 
664:         MCLGET(m, nowait);
665: }
More results from uipc_mbuf.c
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf2.c - 12.9KB - 420 lines
196:         if (o && len > MLEN) {
197:                 MCLGET(o, M_DONTWAIT);
198:                 if ((o->m_flags & M_EXT) == 0) {
More results from uipc_mbuf2.c
bsd_source/t2ex/network/net/src_bsd/kern/uipc_socket.c - 76.4KB - 2,408 lines
2137:         if (sopt->sopt_size > MLEN) {
2138:                 MCLGET(m, M_DONTWAIT);
2139:                 if ((m->m_flags & M_EXT) == 0) {
bsd_source/t2ex/network/net/src_bsd/kern/uipc_socket2.c - 45.7KB - 1,544 lines
1413:         if (CMSG_SPACE(size) > MLEN) {
1414:                 MCLGET(m, M_DONTWAIT);
1415:                 if ((m->m_flags & M_EXT) == 0) {
bsd_source/t2ex/network/net/src_bsd/netinet/ip_icmp.c - 44.0KB - 1,314 lines
360:         if (m && (icmplen + ICMP_MINLEN > MHLEN)) {
361:                 MCLGET(m, M_DONTWAIT);
362:                 if ((m->m_flags & M_EXT) == 0) {
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c - 167.0KB - 4,503 lines
4259:         if (m && tlen > MHLEN) {
4260:                 MCLGET(m, M_DONTWAIT);
4261:                 if ((m->m_flags & M_EXT) == 0) {
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_output.c - 62.9KB - 1,704 lines
470:                 TCP_OUTPUT_COUNTER_INCR(&tcp_output_bigheader);
471:                 MCLGET(m, M_DONTWAIT);
472:                 if ((m->m_flags & M_EXT) == 0) {
More results from tcp_output.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_subr.c - 84.9KB - 2,586 lines
623:                 if (m && hlen + sizeof(struct tcphdr) > MHLEN) {
624:                         MCLGET(m, M_DONTWAIT);
625:                         if ((m->m_flags & M_EXT) == 0) {
More results from tcp_subr.c