Lines Matching refs:lopts
12004 LIBBPF_OPTS(bpf_link_create_opts, lopts); in bpf_program__attach_kprobe_multi_opts()
12071 lopts.kprobe_multi.syms = syms; in bpf_program__attach_kprobe_multi_opts()
12072 lopts.kprobe_multi.addrs = addrs; in bpf_program__attach_kprobe_multi_opts()
12073 lopts.kprobe_multi.cookies = cookies; in bpf_program__attach_kprobe_multi_opts()
12074 lopts.kprobe_multi.cnt = cnt; in bpf_program__attach_kprobe_multi_opts()
12075 lopts.kprobe_multi.flags = retprobe ? BPF_F_KPROBE_MULTI_RETURN : 0; in bpf_program__attach_kprobe_multi_opts()
12084 link_fd = bpf_link_create(prog_fd, 0, attach_type, &lopts); in bpf_program__attach_kprobe_multi_opts()
12465 LIBBPF_OPTS(bpf_link_create_opts, lopts); in bpf_program__attach_uprobe_multi()
12549 lopts.uprobe_multi.path = path; in bpf_program__attach_uprobe_multi()
12550 lopts.uprobe_multi.offsets = offsets; in bpf_program__attach_uprobe_multi()
12551 lopts.uprobe_multi.ref_ctr_offsets = ref_ctr_offsets; in bpf_program__attach_uprobe_multi()
12552 lopts.uprobe_multi.cookies = cookies; in bpf_program__attach_uprobe_multi()
12553 lopts.uprobe_multi.cnt = cnt; in bpf_program__attach_uprobe_multi()
12554 lopts.uprobe_multi.flags = retprobe ? BPF_F_UPROBE_MULTI_RETURN : 0; in bpf_program__attach_uprobe_multi()
12559 lopts.uprobe_multi.pid = pid; in bpf_program__attach_uprobe_multi()
12568 link_fd = bpf_link_create(prog_fd, 0, attach_type, &lopts); in bpf_program__attach_uprobe_multi()
13389 LIBBPF_OPTS(bpf_link_create_opts, lopts); in bpf_program__attach_netfilter()
13408 lopts.netfilter.pf = OPTS_GET(opts, pf, 0); in bpf_program__attach_netfilter()
13409 lopts.netfilter.hooknum = OPTS_GET(opts, hooknum, 0); in bpf_program__attach_netfilter()
13410 lopts.netfilter.priority = OPTS_GET(opts, priority, 0); in bpf_program__attach_netfilter()
13411 lopts.netfilter.flags = OPTS_GET(opts, flags, 0); in bpf_program__attach_netfilter()
13413 link_fd = bpf_link_create(prog_fd, 0, BPF_NETFILTER, &lopts); in bpf_program__attach_netfilter()