/src/sys/net/ |
bpfjit.h | 55 typedef unsigned int (*bpfjit_func_t)(const bpf_ctx_t *, bpf_args_t *);
|
bpf.h | 407 } bpf_args_t; typedef in typeref:struct:bpf_args 411 typedef uint32_t (*bpf_copfunc_t)(const bpf_ctx_t *, bpf_args_t *, uint32_t); 591 u_int bpf_filter_ext(const bpf_ctx_t *, const struct bpf_insn *, bpf_args_t *);
|
bpf_filter.c | 200 bpf_args_t args = { 212 bpf_filter_ext(const bpf_ctx_t *bc, const struct bpf_insn *pc, bpf_args_t *args) 223 bpf_args_t args_store = { 230 bpf_args_t * const args = &args_store;
|
bpf.c | 1682 bpf_args_t args = {
|
/src/sys/net/npf/ |
npf_bpf.c | 59 static uint32_t npf_cop_l3(const bpf_ctx_t *, bpf_args_t *, uint32_t); 60 static uint32_t npf_cop_table(const bpf_ctx_t *, bpf_args_t *, uint32_t); 85 npf_bpf_prepare(npf_cache_t *npc, bpf_args_t *args, uint32_t *M) 126 npf_bpf_filter(bpf_args_t *args, const void *code, bpfjit_func_t jcode) 154 npf_cop_l3(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 174 npf_cop_table(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A)
|
npf_impl.h | 378 void npf_bpf_prepare(npf_cache_t *, bpf_args_t *, uint32_t *); 379 int npf_bpf_filter(bpf_args_t *, const void *, bpfjit_func_t);
|
npf_ruleset.c | 844 npf_rule_inspect(const npf_rule_t *rl, bpf_args_t *bc_args, 872 npf_rule_reinspect(const npf_rule_t *rg, bpf_args_t *bc_args, 908 bpf_args_t bc_args;
|
/src/tests/net/bpf/ |
h_bpf.h | 47 const struct bpf_insn *, bpf_args_t *); 86 bpf_args_t args; 115 bpf_args_t args; 139 bpf_args_t args;
|
/src/tests/lib/libbpfjit/ |
t_cop.c | 43 static uint32_t retA(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 44 static uint32_t retBL(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 45 static uint32_t retWL(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 46 static uint32_t retNF(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 47 static uint32_t setARG(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 64 retA(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 71 retBL(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 78 retWL(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 85 retNF(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 95 setARG(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A [all...] |
t_extmem.c | 43 static uint32_t retM(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 57 retM(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 86 bpf_args_t args = { 125 bpf_args_t args = { 189 bpf_args_t args = { 241 bpf_args_t args = { 309 bpf_args_t args = { 354 bpf_args_t args = { 400 bpf_args_t args = { 446 bpf_args_t args = [all...] |
t_bpfjit.c | 50 bpf_args_t args;
|
/src/tests/net/bpfjit/ |
t_cop.c | 51 static uint32_t retA(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 52 static uint32_t retBL(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 53 static uint32_t retWL(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 54 static uint32_t retNF(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 55 static uint32_t setARG(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 72 retA(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 79 retBL(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 86 retWL(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 93 retNF(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 103 setARG(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A [all...] |
t_extmem.c | 51 static uint32_t retM(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A); 65 retM(const bpf_ctx_t *bc, bpf_args_t *args, uint32_t A) 94 bpf_args_t args = { 170 bpf_args_t args = { 228 bpf_args_t args = { 308 bpf_args_t args = { 359 bpf_args_t args = { 411 bpf_args_t args = { 463 bpf_args_t args = {
|
t_bpfjit.c | 63 bpf_args_t args;
|
/src/usr.sbin/npf/npftest/libnpftest/ |
npf_bpf_test.c | 49 bpf_args_t bc_args;
|