Home
last modified time | relevance | path

Searched refs:btf_is_union (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/yocto/meta-clang/dynamic-layers/openembedded-layer/recipes-devtools/bpftrace/bpftrace/
H A D0001-Fix-segfault-when-btf__type_by_id-returns-NULL.patch124 - if (!(btf_is_struct(t) || btf_is_union(t) || btf_is_enum(t)))
125 + if (!t || !(btf_is_struct(t) || btf_is_union(t) || btf_is_enum(t)))
/OK3568_Linux_fs/kernel/tools/lib/bpf/
H A Dbtf.h218 static inline bool btf_is_union(const struct btf_type *t) in btf_is_union() function
H A Dbtf.c1826 if (btf_is_union(t) && bit_offset) in btf__add_field()
/OK3568_Linux_fs/kernel/tools/bpf/resolve_btfids/
H A Dmain.c516 } else if (btf_is_union(type) && nr_unions) { in symbols_resolve()
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dcore_reloc.c367 } else if (btf_is_union(t) && btf_vlen(t) && in setup_type_id_case_local()