Symbol: map_key
drivers/firmware/efi/libstub/efi-stub-helper.c
448
status = efi_bs_call(exit_boot_services, handle, map->map_key);
drivers/firmware/efi/libstub/efi-stub-helper.c
468
&map->map_key,
drivers/firmware/efi/libstub/efi-stub-helper.c
481
status = efi_bs_call(exit_boot_services, handle, map->map_key);
drivers/firmware/efi/libstub/mem.c
31
status = efi_bs_call(get_memory_map, &tmp.map_size, NULL, &tmp.map_key,
drivers/firmware/efi/libstub/mem.c
55
status = efi_bs_call(get_memory_map, &m->map_size, m->map, &m->map_key,
drivers/hid/hid-input.c
1011
map_key(BTN_TOOL_MOUSE);
drivers/hid/hid-input.c
1014
map_key(BTN_TOOL_FINGER);
drivers/hid/hid-input.c
1031
map_key(BTN_TOOL_PEN);
drivers/hid/hid-input.c
1401
map_key(BTN_MISC);
drivers/hid/hid-input.c
779
map_key(KEY_UNKNOWN);
drivers/hid/hid-input.c
822
map_key(code);
include/linux/efi.h
541
unsigned long map_key;
include/uapi/sound/sfnt_info.h
171
int map_bank, map_instr, map_key; /* key = -1 means all keys */
sound/synth/emux/soundfont.c
398
zp->v.low == map.map_key &&
sound/synth/emux/soundfont.c
423
if (map.map_key >= 0) {
sound/synth/emux/soundfont.c
424
zp->v.low = map.map_key;
sound/synth/emux/soundfont.c
425
zp->v.high = map.map_key;
tools/lib/bpf/libbpf.c
14267
bpf_map_delete_elem(pb->map_fd, &cpu_buf->map_key);
tools/lib/bpf/libbpf.c
14280
int cpu, int map_key)
tools/lib/bpf/libbpf.c
14291
cpu_buf->map_key = map_key;
tools/lib/bpf/libbpf.c
14480
int cpu, map_key;
tools/lib/bpf/libbpf.c
14483
map_key = p->cpu_cnt > 0 ? p->map_keys[i] : i;
tools/lib/bpf/libbpf.c
14491
cpu_buf = perf_buffer__open_cpu_buf(pb, p->attr, cpu, map_key);
tools/lib/bpf/libbpf.c
14499
err = bpf_map_update_elem(pb->map_fd, &map_key,
tools/lib/bpf/libbpf.c
14504
cpu, map_key, cpu_buf->fd,
tools/perf/util/bpf-trace-summary.c
172
static int update_thread_stats(struct hashmap *hash, struct syscall_key *map_key,
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
183
data->key = map_key->cpu_or_tid;
tools/perf/util/bpf-trace-summary.c
200
nodes->syscall_nr = map_key->nr;
tools/perf/util/bpf-trace-summary.c
236
static int update_total_stats(struct hashmap *hash, struct syscall_key *map_key,
tools/perf/util/bpf-trace-summary.c
242
if (!hashmap__find(hash, map_key->nr, &data)) {
tools/perf/util/bpf-trace-summary.c
254
data->key = map_key->nr;
tools/perf/util/bpf-trace-summary.c
308
static int update_cgroup_stats(struct hashmap *hash, struct syscall_key *map_key,
tools/perf/util/bpf-trace-summary.c
314
if (!hashmap__find(hash, map_key->cgroup, &data)) {
tools/perf/util/bpf-trace-summary.c
319
data->key = map_key->cgroup;
tools/perf/util/bpf-trace-summary.c
336
nodes->syscall_nr = map_key->nr;
tools/testing/selftests/bpf/benchs/bench_ringbufs.c
510
int map_key;
tools/testing/selftests/bpf/map_tests/map_in_map_batch_ops.c
35
__u32 map_key = 0, map_id;
tools/testing/selftests/bpf/map_tests/map_in_map_batch_ops.c
58
ret = bpf_map_update_elem(map_fd, &map_key, &map_id, 0);
tools/testing/selftests/bpf/prog_tests/load_bytes_relative.c
19
__u32 map_key = 0;
tools/testing/selftests/bpf/prog_tests/load_bytes_relative.c
57
err = bpf_map_lookup_elem(map_fd, &map_key, &map_value);
tools/testing/selftests/bpf/progs/load_bytes_relative.c
26
__u32 map_key = 0;
tools/testing/selftests/bpf/progs/load_bytes_relative.c
45
bpf_map_update_elem(&test_result, &map_key, &test_passed, BPF_ANY);