Lines Matching refs:lopts
11618 LIBBPF_OPTS(bpf_link_create_opts, lopts); in bpf_program__attach_kprobe_multi_opts()
11685 lopts.kprobe_multi.syms = syms; in bpf_program__attach_kprobe_multi_opts()
11686 lopts.kprobe_multi.addrs = addrs; in bpf_program__attach_kprobe_multi_opts()
11687 lopts.kprobe_multi.cookies = cookies; in bpf_program__attach_kprobe_multi_opts()
11688 lopts.kprobe_multi.cnt = cnt; in bpf_program__attach_kprobe_multi_opts()
11689 lopts.kprobe_multi.flags = retprobe ? BPF_F_KPROBE_MULTI_RETURN : 0; in bpf_program__attach_kprobe_multi_opts()
11698 link_fd = bpf_link_create(prog_fd, 0, attach_type, &lopts); in bpf_program__attach_kprobe_multi_opts()
12095 LIBBPF_OPTS(bpf_link_create_opts, lopts); in bpf_program__attach_uprobe_multi()
12179 lopts.uprobe_multi.path = path; in bpf_program__attach_uprobe_multi()
12180 lopts.uprobe_multi.offsets = offsets; in bpf_program__attach_uprobe_multi()
12181 lopts.uprobe_multi.ref_ctr_offsets = ref_ctr_offsets; in bpf_program__attach_uprobe_multi()
12182 lopts.uprobe_multi.cookies = cookies; in bpf_program__attach_uprobe_multi()
12183 lopts.uprobe_multi.cnt = cnt; in bpf_program__attach_uprobe_multi()
12184 lopts.uprobe_multi.flags = retprobe ? BPF_F_UPROBE_MULTI_RETURN : 0; in bpf_program__attach_uprobe_multi()
12189 lopts.uprobe_multi.pid = pid; in bpf_program__attach_uprobe_multi()
12198 link_fd = bpf_link_create(prog_fd, 0, attach_type, &lopts); in bpf_program__attach_uprobe_multi()
12990 LIBBPF_OPTS(bpf_link_create_opts, lopts); in bpf_program__attach_netfilter()
13009 lopts.netfilter.pf = OPTS_GET(opts, pf, 0); in bpf_program__attach_netfilter()
13010 lopts.netfilter.hooknum = OPTS_GET(opts, hooknum, 0); in bpf_program__attach_netfilter()
13011 lopts.netfilter.priority = OPTS_GET(opts, priority, 0); in bpf_program__attach_netfilter()
13012 lopts.netfilter.flags = OPTS_GET(opts, flags, 0); in bpf_program__attach_netfilter()
13014 link_fd = bpf_link_create(prog_fd, 0, BPF_NETFILTER, &lopts); in bpf_program__attach_netfilter()