Symbol: hashmap__find
tools/bpf/bpftool/gen.c
2451
!hashmap__find(cand_cache, relo->type_id, &cands)) {
tools/lib/bpf/btf.c
1937
hashmap__find(p->str_off_map, *str_off, &mapped_off)) {
tools/lib/bpf/btf.c
5281
if (!hashmap__find(names_map, t->name_off, &cand_id))
tools/lib/bpf/btf_dump.c
1652
(void)hashmap__find(name_map, orig_name, &dup_cnt);
tools/lib/bpf/libbpf.c
6007
!hashmap__find(cand_cache, local_id, &cands)) {
tools/lib/bpf/strset.c
130
if (hashmap__find(set->strs_hash, new_off, &old_off))
tools/lib/bpf/usdt.c
920
if (hashmap__find(specs_hash, target->spec_str, &tmp)) {
tools/perf/builtin-ftrace.c
1232
if (!hashmap__find(ftrace->profile_hash, func, &prof)) {
tools/perf/builtin-trace.c
2649
if (!hashmap__find(syscall_stats, id, &stats)) {
tools/perf/tests/expr.c
138
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "BAR", &val_ptr));
tools/perf/tests/expr.c
139
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "BAZ", &val_ptr));
tools/perf/tests/expr.c
140
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "BOZO", &val_ptr));
tools/perf/tests/expr.c
148
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "EVENT1,param=3@", &val_ptr));
tools/perf/tests/expr.c
149
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "EVENT2,param=3@", &val_ptr));
tools/perf/tests/expr.c
156
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "dash-event1", &val_ptr));
tools/perf/tests/expr.c
157
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "dash-event2", &val_ptr));
tools/perf/tests/expr.c
170
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids,
tools/perf/tests/expr.c
179
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids,
tools/perf/tests/expr.c
204
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "EVENT1", &val_ptr));
tools/perf/tests/expr.c
209
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "EVENT1", &val_ptr));
tools/perf/tests/expr.c
224
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "EVENT1", &val_ptr));
tools/perf/tests/expr.c
229
TEST_ASSERT_VAL("find ids", hashmap__find(ctx->ids, "EVENT1", &val_ptr));
tools/perf/tests/expr.c
268
TEST_ASSERT_VAL("source count", hashmap__find(ctx->ids, "EVENT1", &val_ptr));
tools/perf/util/annotate.c
1976
hashmap__find(apd->type_hash, dl->al.offset, &entry);
tools/perf/util/annotate.c
244
if (!hashmap__find(src->samples, hash_key, &entry)) {
tools/perf/util/annotate.h
415
if (!hashmap__find(src->samples, key, &entry))
tools/perf/util/bpf-trace-summary.c
178
if (!hashmap__find(hash, map_key->cpu_or_tid, &data)) {
tools/perf/util/bpf-trace-summary.c
242
if (!hashmap__find(hash, map_key->nr, &data)) {
tools/perf/util/bpf-trace-summary.c
314
if (!hashmap__find(hash, map_key->cgroup, &data)) {
tools/perf/util/bpf_lock_contention.c
618
if (hashmap__find(&slab_hash, flags & LCB_F_SLAB_ID_MASK, &slab_data)) {
tools/perf/util/expr.c
224
return hashmap__find(ctx->ids, id, data) ? 0 : -1;
tools/perf/util/expr.c
424
if (hashmap__find(ctx->ids, id, /*value=*/NULL))
tools/perf/util/fncache.c
41
if (!hashmap__find(fncache__get(), name, &val))
tools/perf/util/hwmon_pmu.c
270
if (!hashmap__find(&pmu->events, key.type_and_num, &value)) {
tools/perf/util/metricgroup.c
1344
if (hashmap__find(m->pctx->ids, metric_id, NULL))
tools/perf/util/metricgroup.c
329
if (hashmap__find(ids, metric_id, &val_ptr)) {
tools/perf/util/pmu.c
446
if (hashmap__find(pmu->aliases, name, &alias))
tools/perf/util/pmu.c
470
if (hashmap__find(pmu->aliases, name, &alias))
tools/perf/util/s390-sample-raw.c
191
if (cache_pmu == pmu && hashmap__find(cache, cache_key, &result))
tools/perf/util/stat.c
357
if (hashmap__find(mask, key, NULL)) {
tools/perf/util/threads.c
100
if (hashmap__find(&table->shard, tid, &res))
tools/perf/util/threads.c
122
if (hashmap__find(&table->shard, tid, &res))
tools/testing/selftests/bpf/prog_tests/hashmap.c
123
if (CHECK(!hashmap__find(map, k, &oldv), "elem_find",
tools/testing/selftests/bpf/prog_tests/hashmap.c
311
CHECK(!hashmap__find(map, "b", &value), "hashmap__find", "can't find value for 'b'\n");
tools/testing/selftests/bpf/prog_tests/hashmap.c
429
if (CHECK(hashmap__find(map, k, NULL), "elem_find",
tools/testing/selftests/bpf/prog_tests/hashmap.c
76
if (CHECK(!hashmap__find(map, k, &oldv), "elem_find",