trace_btf.h 410 B

1234567891011
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <linux/btf.h>
  3. const struct btf_type *btf_find_func_proto(const char *func_name,
  4. struct btf **btf_p);
  5. const struct btf_param *btf_get_func_param(const struct btf_type *func_proto,
  6. s32 *nr);
  7. const struct btf_member *btf_find_struct_member(struct btf *btf,
  8. const struct btf_type *type,
  9. const char *member_name,
  10. u32 *anon_offset);