Lines Matching refs:nbuf_t
117 typedef struct nbuf nbuf_t;
119 void nbuf_init(npf_t *, nbuf_t *, struct mbuf *, const ifnet_t *);
120 void nbuf_reset(nbuf_t *);
121 struct mbuf * nbuf_head_mbuf(nbuf_t *);
123 bool nbuf_flag_p(const nbuf_t *, int);
124 void nbuf_unset_flag(nbuf_t *, int);
126 void * nbuf_dataptr(nbuf_t *);
127 size_t nbuf_offset(const nbuf_t *);
128 void * nbuf_advance(nbuf_t *, size_t, size_t);
130 void * nbuf_ensure_contig(nbuf_t *, size_t);
131 void * nbuf_ensure_writable(nbuf_t *, size_t);
133 bool nbuf_cksum_barrier(nbuf_t *, int);
134 int nbuf_add_tag(nbuf_t *, uint32_t);
135 int npf_mbuf_add_tag(nbuf_t *, struct mbuf *, uint32_t);
136 int nbuf_find_tag(nbuf_t *, uint32_t *);
165 nbuf_t * npc_nbuf;