Symbol: bpf_insn
lib/libipfw3/layer4/ipfw3_layer4.c
150
sizeof(struct bpf_insn) * program.bf_len);
lib/libipfw3/layer4/ipfw3_layer4.c
152
sizeof(struct bpf_insn) * (bpf->bf_len - 1)) /
libexec/rbootd/bpf.c
166
static struct bpf_insn bpf_insn[] = {
libexec/rbootd/bpf.c
178
NELEM(bpf_insn), bpf_insn
sbin/dhclient/bpf.c
122
struct bpf_insn dhcp_bpf_filter[] = {
sbin/dhclient/bpf.c
149
int dhcp_bpf_filter_len = sizeof(dhcp_bpf_filter) / sizeof(struct bpf_insn);
sbin/dhclient/bpf.c
155
struct bpf_insn dhcp_bpf_wfilter[] = {
sbin/dhclient/bpf.c
189
int dhcp_bpf_wfilter_len = sizeof(dhcp_bpf_wfilter) / sizeof(struct bpf_insn);
sys/net/bpf.c
1047
struct bpf_insn *fcode, *old;
sys/net/bpf.c
1074
fcode = (struct bpf_insn *)kmalloc(size, M_BPF, M_WAITOK);
sys/net/bpf.c
119
struct sockaddr *, int *, struct bpf_insn *);
sys/net/bpf.c
156
struct sockaddr *sockp, int *datlen, struct bpf_insn *wfilter)
sys/net/bpf.c
1735
bpf_filter(const struct bpf_insn *pc, u_char *p, u_int wirelen, u_int buflen)
sys/net/bpf.h
242
int bpf_validate(const struct bpf_insn *, int);
sys/net/bpf.h
254
u_int bpf_filter(const struct bpf_insn *, u_char *, u_int, u_int);
sys/net/bpf.h
74
struct bpf_insn *bf_insns;
sys/net/bpf_filter.c
174
bpf_filter(const struct bpf_insn *pc, u_char *p, u_int wirelen, u_int buflen)
sys/net/bpf_filter.c
511
bpf_validate(const struct bpf_insn *f, int len)
sys/net/bpf_filter.c
514
const struct bpf_insn *p;
sys/net/bpfdesc.h
70
struct bpf_insn *bd_rfilter; /* read filter code */
sys/net/bpfdesc.h
71
struct bpf_insn *bd_wfilter; /* write filter code */
sys/net/ipfw3/ip_fw3.h
232
struct bpf_insn bf_insn[1];
sys/netgraph/bpf/ng_bpf.h
57
struct bpf_insn bpf_prog[__ARRAY_ZERO]; /* bpf program */
sys/netgraph/bpf/ng_bpf.h
61
(sizeof(struct ng_bpf_hookprog) + (numInsn) * sizeof(struct bpf_insn))
sys/netgraph7/bpf/ng_bpf.h
58
struct bpf_insn bpf_prog[]; /* bpf program */
sys/netgraph7/bpf/ng_bpf.h
62
(sizeof(struct ng_bpf_hookprog) + (numInsn) * sizeof(struct bpf_insn))
usr.sbin/rarpd/rarpd.c
374
static struct bpf_insn insns[] = {
usr.sbin/usbdump/usbdump.c
187
struct bpf_insn *dynamic_insn;
usr.sbin/usbdump/usbdump.c
195
dynamic_insn = malloc(((len * 5) + 1) * sizeof(struct bpf_insn));