Lines Matching defs:bpf_object
610 struct bpf_object { struct
611 char name[BPF_OBJ_NAME_LEN];
612 char license[64];
613 __u32 kern_version;
615 struct bpf_program *programs;
616 size_t nr_programs;
617 struct bpf_map *maps;
618 size_t nr_maps;
619 size_t maps_cap;
621 char *kconfig;
622 struct extern_desc *externs;
623 int nr_extern;
624 int kconfig_map_idx;
626 bool loaded;
627 bool has_subcalls;
628 bool has_rodata;
630 struct bpf_gen *gen_loader;
633 struct elf_state efile;
635 struct btf *btf;
636 struct btf_ext *btf_ext;
641 struct btf *btf_vmlinux;
668 static const char *elf_sym_str(const struct bpf_object *obj, size_t off); argument