Lines Matching defs:btf_prog_table
834 build_btf_tables(struct hashmap *btf_prog_table,
843 err = build_btf_type_table(btf_prog_table, BPF_OBJ_PROG, &prog_info,
851 hashmap__free(btf_prog_table);
860 struct hashmap *btf_prog_table,
877 hashmap__for_each_key_entry(btf_prog_table, entry, info->id) {
893 struct hashmap *btf_prog_table,
905 hashmap__for_each_key_entry(btf_prog_table, entry, info->id) {
928 show_btf(int fd, struct hashmap *btf_prog_table,
957 show_btf_json(&info, fd, btf_prog_table, btf_map_table);
959 show_btf_plain(&info, fd, btf_prog_table, btf_map_table);
966 struct hashmap *btf_prog_table;
983 btf_prog_table = hashmap__new(hash_fn_for_key_as_id,
987 if (IS_ERR(btf_prog_table) || IS_ERR(btf_map_table)) {
988 hashmap__free(btf_prog_table);
995 err = build_btf_tables(btf_prog_table, btf_map_table);
1004 err = show_btf(fd, btf_prog_table, btf_map_table);
1036 err = show_btf(fd, btf_prog_table, btf_map_table);
1046 hashmap__free(btf_prog_table);