Home
last modified time | relevance | path

Searched refs:bpf_linker (Results 1 – 3 of 3) sorted by relevance

/linux/tools/lib/bpf/
H A Dlinker.c133 struct bpf_linker { struct
158 static int init_output_elf(struct bpf_linker *linker, const char *file); argument
160 static int linker_load_obj_file(struct bpf_linker *linker, const char *filename,
169 static int linker_append_sec_data(struct bpf_linker *linker, struct src_obj *obj);
170 static int linker_append_elf_syms(struct bpf_linker *linker, struct src_obj *obj);
171 static int linker_append_elf_sym(struct bpf_linker *linker, struct src_obj *obj,
173 static int linker_append_elf_relos(struct bpf_linker *linker, struct src_obj *obj);
174 static int linker_append_btf(struct bpf_linker *linker, struct src_obj *obj);
175 static int linker_append_btf_ext(struct bpf_linker *linker, struct src_obj *obj);
177 static int finalize_btf(struct bpf_linker *linker);
[all …]
H A Dlibbpf.h1786 struct bpf_linker;
1788 LIBBPF_API struct bpf_linker *bpf_linker__new(const char *filename, struct bpf_linker_opts *opts);
1789 LIBBPF_API int bpf_linker__add_file(struct bpf_linker *linker,
1792 LIBBPF_API int bpf_linker__finalize(struct bpf_linker *linker);
1793 LIBBPF_API void bpf_linker__free(struct bpf_linker *linker);
/linux/tools/bpf/bpftool/
H A Dgen.c1879 struct bpf_linker *linker; in do_object()