Home
last modified time | relevance | path

Searched refs:bpf_program (Results 1 – 25 of 82) sorted by relevance

1234

/external/bcc/tools/old/
Dmemleak.py228 bpf_program = BPF(text=bpf_source) variable
232 bpf_program.attach_uprobe(name="c", sym="malloc",
234 bpf_program.attach_uretprobe(name="c", sym="malloc",
236 bpf_program.attach_uprobe(name="c", sym="free",
240 bpf_program.attach_kprobe(event="__kmalloc", fn_name="alloc_enter")
241 bpf_program.attach_kretprobe(event="__kmalloc", fn_name="alloc_exit")
242 bpf_program.attach_kprobe(event="kfree", fn_name="free_enter")
248 allocs = bpf_program.get_table("allocs")
252 stack = decode_stack(bpf_program, pid, info)
269 print(bpf_program.trace_fields())
/external/iptables/extensions/
Dlibxt_bpf.c93 const char *bpf_program) in bpf_parse_string() argument
102 if (sscanf(bpf_program, "%hu%c", &len, &sp) != 2 || in bpf_parse_string()
115 token = bpf_program; in bpf_parse_string()
160 bpf_parse_string(bi->bpf_program, &bi->bpf_program_num_elem, in bpf_parse()
161 ARRAY_SIZE(bi->bpf_program), cb->arg); in bpf_parse()
175 bpf_parse_string(bi->bpf_program, &bi->bpf_program_num_elem, in bpf_parse_v1()
176 ARRAY_SIZE(bi->bpf_program), cb->arg); in bpf_parse_v1()
206 bpf_save_code(info->bpf_program, info->bpf_program_num_elem); in bpf_save()
214 bpf_save_code(info->bpf_program, info->bpf_program_num_elem); in bpf_save_v1()
246 bpf_print_code(info->bpf_program, info->bpf_program_num_elem, '\0'); in bpf_print()
[all …]
/external/tcpdump/
Dinterface.h75 struct bpf_program;
77 extern void bpf_dump(const struct bpf_program *, int);
Dbpf_dump.c33 bpf_dump(const struct bpf_program *p, int option) in bpf_dump()
/external/iptables/include/linux/netfilter/
Dxt_bpf.h15 struct sock_filter bpf_program[XT_BPF_MAX_NUM_INSTR]; member
32 struct sock_filter bpf_program[XT_BPF_MAX_NUM_INSTR]; member
/external/kernel-headers/original/uapi/linux/netfilter/
Dxt_bpf.h16 struct sock_filter bpf_program[XT_BPF_MAX_NUM_INSTR]; member
34 struct sock_filter bpf_program[XT_BPF_MAX_NUM_INSTR]; member
/external/scapy/scapy/modules/
Dwinpcapy.py60 class bpf_program(Structure): class
62 bpf_program._fields_ = [('bf_len', u_int),
369 pcap_compile.argtypes = [POINTER(pcap_t), POINTER(bpf_program), STRING, c_int, bpf_u_int32]
375 pcap_compile_nopcap.argtypes = [c_int, c_int, POINTER(bpf_program), STRING, c_int, bpf_u_int32]
381 pcap_setfilter.argtypes = [POINTER(pcap_t), POINTER(bpf_program)]
387 pcap_freecode.argtypes = [POINTER(bpf_program)]
622 pcap_offline_filter.argtypes = [POINTER(bpf_program),POINTER(pcap_pkthdr),POINTER(u_char)]
/external/ppp/pppd/include/net/
Dif_ppp.h133 #define PPPIOCSPASS _IOW('t', 71, struct bpf_program) /* set pass filter */
134 #define PPPIOCSACTIVE _IOW('t', 70, struct bpf_program) /* set active filt */
/external/libpcap/pcap/
Dbpf.h115 struct bpf_program { struct
276 PCAP_API void bpf_dump(const struct bpf_program *, int);
Dpcap.h583 PCAP_API int pcap_setfilter(pcap_t *, struct bpf_program *);
613 PCAP_API int pcap_compile(pcap_t *, struct bpf_program *, const char *, int,
617 PCAP_API int pcap_compile_nopcap(int, int, struct bpf_program *,
622 PCAP_API void pcap_freecode(struct bpf_program *);
625 PCAP_API int pcap_offline_filter(const struct bpf_program *,
/external/scapy/scapy/arch/
Dcommon.py34 class bpf_program(Structure): class
81 return bpf_program(size, bip)
/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/
Dfexit_bpf2bpf.c13 struct bpf_program **prog = NULL; in test_fexit_bpf2bpf_common()
28 prog = calloc(sizeof(struct bpf_program *), prog_cnt); in test_fexit_bpf2bpf_common()
Dtest_overhead.c64 struct bpf_program *kprobe_prog, *kretprobe_prog, *raw_tp_prog; in test_test_overhead()
65 struct bpf_program *fentry_prog, *fexit_prog; in test_test_overhead()
Dtailcalls.c12 struct bpf_program *prog; in test_tailcall_1()
150 struct bpf_program *prog; in test_tailcall_2()
228 struct bpf_program *prog; in test_tailcall_3()
306 struct bpf_program *prog; in test_tailcall_4()
394 struct bpf_program *prog; in test_tailcall_5()
Dattach_probe.c57 struct bpf_program *kprobe_prog, *kretprobe_prog; in test_attach_probe()
58 struct bpf_program *uprobe_prog, *uretprobe_prog; in test_attach_probe()
Dreference_tracking.c13 struct bpf_program *prog; in test_reference_tracking()
Dsockopt_multi.c9 struct bpf_program *prog; in prog_attach()
38 struct bpf_program *prog; in prog_detach()
/external/libpcap/
Dpcap-int.h169 typedef int (*setfilter_op_t)(pcap_t *, struct bpf_program *);
289 struct bpf_program fcode;
626 int install_bpf_program(pcap_t *, struct bpf_program *);
Dbpf_dump.c32 bpf_dump(const struct bpf_program *p, int option) in bpf_dump()
/external/libpcap/testprogs/fuzz/
Dfuzz_filter.c13 struct bpf_program bpf; in LLVMFuzzerTestOneInput()
/external/iptables/utils/
Dnfbpf_compile.c17 struct bpf_program program; in main()
/external/ppp/pppd/include/
Dpcap-int.h95 struct bpf_program fcode;
/external/linux-kselftest/tools/testing/selftests/bpf/
Dflow_dissector_load.h16 struct bpf_program *prog, *main_prog; in bpf_flow_load()
/external/libpcap/testprogs/
Dvalgrindtest.c270 struct bpf_program bad_fcode; in main()
276 struct bpf_program fcode; in main()
/external/ppp/pppd/
Dpppd.h345 extern struct bpf_program pass_filter; /* Filter for pkts to pass */
346 extern struct bpf_program active_filter; /* Filter for link-active pkts */
687 int set_filters __P((struct bpf_program *pass, struct bpf_program *active));

1234