Lines Matching defs:dedup_table
3290 * index (`btf_dedup->dedup_table`), which maps type descriptor's signature hash
3384 struct hashmap *dedup_table;
3411 hashmap__for_each_key_entry(d->dedup_table, node, hash)
3415 return hashmap__append(d->dedup_table, hash, type_id);
3447 hashmap__free(d->dedup_table);
3448 d->dedup_table = NULL;
3492 d->dedup_table = hashmap__new(hash_fn, btf_dedup_equal_fn, NULL);
3493 if (IS_ERR(d->dedup_table)) {
3494 err = PTR_ERR(d->dedup_table);
3495 d->dedup_table = NULL;
4002 * canonical and is added into `btf_dedup->dedup_table` as another candidate.
4548 * as canonical for itself and is added into btf_dedup->dedup_table hash map
4643 * btf_dedup->dedup_table as another possible canonical representative.
4780 /* we won't need d->dedup_table anymore */
4781 hashmap__free(d->dedup_table);
4782 d->dedup_table = NULL;