gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 4 of 4 for funcall:M_LEADINGSPACE (0.01 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf.c - 57.8KB - 1,910 lines
1738:         (*pr)("  leadingspace=%u, trailingspace=%u, readonly=%u\n",
1739:             (int)M_LEADINGSPACE(m), (int)M_TRAILINGSPACE(m),
1740:             (int)M_READONLY(m));
bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf2.c - 12.9KB - 420 lines
179:         }
180:         if ((off == 0 || offp) && M_LEADINGSPACE(n->m_next) >= hlen &&
181:             !sharedcluster && n->m_next->m_len >= tlen) {
bsd_source/t2ex/network/net/src_bsd/netinet/ip_output.c - 67.3KB - 1,940 lines
1129:                 ip->ip_dst = p->ipopt_dst;
1130:         if (M_READONLY(m) || M_LEADINGSPACE(m) < optlen) {
1131:                 MGETHDR(n, M_DONTWAIT, MT_HEADER);
bsd_source/t2ex/network/net/src_bsd/sys/mbuf.h - 42.4KB - 986 lines
706: do {                                                                    \
707:         if (M_LEADINGSPACE(m) >= (plen)) {                             \
708:                 (m)->m_data -= (plen);                                        \