Searched refs:local_btf (Results 1 – 5 of 5) sorted by relevance
/linux/tools/lib/bpf/ |
H A D | relo_core.h | 71 int __bpf_core_types_are_compat(const struct btf *local_btf, __u32 local_id, 73 int bpf_core_types_are_compat(const struct btf *local_btf, __u32 local_id, 75 int __bpf_core_types_match(const struct btf *local_btf, __u32 local_id, const struct btf *targ_btf, 77 int bpf_core_types_match(const struct btf *local_btf, __u32 local_id, const struct btf *targ_btf, 84 const struct btf *local_btf,
|
H A D | libbpf.c | 5719 bpf_core_find_cands(struct bpf_object *obj, const struct btf *local_btf, __u32 local_type_id) in bpf_core_find_cands() argument 5729 local_cand.btf = local_btf; in bpf_core_find_cands() 5731 local_t = btf__type_by_id(local_btf, local_type_id); in bpf_core_find_cands() 5735 local_name = btf__name_by_offset(local_btf, local_t->name_off); in bpf_core_find_cands() 5798 int bpf_core_types_are_compat(const struct btf *local_btf, __u32 local_id, in bpf_core_types_are_compat() argument 5801 return __bpf_core_types_are_compat(local_btf, local_id, targ_btf, targ_id, 32); in bpf_core_types_are_compat() 5804 int bpf_core_types_match(const struct btf *local_btf, __u32 local_id, in bpf_core_types_match() argument 5807 return __bpf_core_types_match(local_btf, local_id, targ_btf, targ_id, false, 32); in bpf_core_types_match() 5857 const struct btf *local_btf, in bpf_core_resolve_relo() argument 5869 local_type = btf__type_by_id(local_btf, local_id); in bpf_core_resolve_relo() [all …]
|
/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | core_reloc.c | 427 struct btf *local_btf = btf__parse(test->bpf_obj_file, NULL); in setup_type_id_case_local() local 433 if (!ASSERT_OK_PTR(local_btf, "local_btf") || !ASSERT_OK_PTR(targ_btf, "targ_btf")) { in setup_type_id_case_local() 434 btf__free(local_btf); in setup_type_id_case_local() 446 for (i = 1; i < btf__type_cnt(local_btf); i++) in setup_type_id_case_local() 448 t = btf__type_by_id(local_btf, i); in setup_type_id_case_local() 454 (name = btf__name_by_offset(local_btf, btf_members(t)[0].name_off)) && in setup_type_id_case_local() 458 (name = btf__name_by_offset(local_btf, btf_members(t)[0].name_off)) && in setup_type_id_case_local() 462 (name = btf__name_by_offset(local_btf, btf_enum(t)[0].name_off)) && in setup_type_id_case_local() 465 } else if (btf_is_ptr(t) && (t = btf__type_by_id(local_btf, t->type))) { in setup_type_id_case_local() 466 if (btf_is_func_proto(t) && (t = btf__type_by_id(local_btf, t->type)) && in setup_type_id_case_local() [all …]
|
/linux/tools/bpf/bpftool/ |
H A D | gen.c | 2302 btfgen_find_cands(const struct btf *local_btf, const struct btf *targ_btf, __u32 local_id) in btfgen_find_cands() argument 2311 local_cand.btf = local_btf; in btfgen_find_cands() 2314 local_type = btf__type_by_id(local_btf, local_id); in btfgen_find_cands() 2320 local_name = btf__name_by_offset(local_btf, local_type->name_off); in btfgen_find_cands()
|
/linux/kernel/bpf/ |
H A D | btf.c | 8801 int bpf_core_types_are_compat(const struct btf *local_btf, __u32 local_id, in bpf_core_types_are_compat() argument 8804 return __bpf_core_types_are_compat(local_btf, local_id, targ_btf, targ_id, in bpf_core_types_are_compat() 8810 int bpf_core_types_match(const struct btf *local_btf, u32 local_id, in bpf_core_types_match() argument 8813 return __bpf_core_types_match(local_btf, local_id, targ_btf, targ_id, false, in bpf_core_types_match() 9033 const struct btf *local_btf = ctx->btf; in bpf_core_find_cands() local 9047 local_type = btf_type_by_id(local_btf, local_type_id); in bpf_core_find_cands() 9051 name = btf_name_by_offset(local_btf, local_type->name_off); in bpf_core_find_cands()
|