Lines Matching refs:cand_cache
6146 struct hashmap *cand_cache,
6166 !hashmap__find(cand_cache, local_id, &cands)) {
6174 err = hashmap__set(cand_cache, local_id, cands, NULL, NULL);
6193 struct hashmap *cand_cache = NULL;
6213 cand_cache = hashmap__new(bpf_core_hash_fn, bpf_core_equal_fn, NULL);
6214 if (IS_ERR(cand_cache)) {
6215 err = PTR_ERR(cand_cache);
6276 err = bpf_core_resolve_relo(prog, rec, i, obj->btf, cand_cache, &targ_res);
6297 if (!IS_ERR_OR_NULL(cand_cache)) {
6298 hashmap__for_each_entry(cand_cache, entry, i) {
6301 hashmap__free(cand_cache);