Symbol: BPF_MAP_TYPE_INSN_ARRAY
include/linux/bpf_types.h
136
BPF_MAP_TYPE(BPF_MAP_TYPE_INSN_ARRAY, insn_array_map_ops)
kernel/bpf/bpf_insn_array.c
159
return map->map_type == BPF_MAP_TYPE_INSN_ARRAY;
kernel/bpf/core.c
1504
if (map->map_type == BPF_MAP_TYPE_INSN_ARRAY)
kernel/bpf/syscall.c
1490
case BPF_MAP_TYPE_INSN_ARRAY:
kernel/bpf/syscall.c
2857
if (prog->aux->used_maps[i]->map_type != BPF_MAP_TYPE_INSN_ARRAY)
kernel/bpf/verifier.c
10303
case BPF_MAP_TYPE_INSN_ARRAY:
kernel/bpf/verifier.c
17825
WARN_ON_ONCE(map->map_type != BPF_MAP_TYPE_INSN_ARRAY &&
kernel/bpf/verifier.c
21041
if (verifier_bug_if(map->map_type != BPF_MAP_TYPE_INSN_ARRAY, env,
kernel/bpf/verifier.c
21690
case BPF_MAP_TYPE_INSN_ARRAY:
kernel/bpf/verifier.c
21763
if (map->map_type == BPF_MAP_TYPE_INSN_ARRAY) {
kernel/bpf/verifier.c
6228
if (map->map_type == BPF_MAP_TYPE_INSN_ARRAY)
kernel/bpf/verifier.c
6660
if (reg->map_ptr->map_type == BPF_MAP_TYPE_INSN_ARRAY)
kernel/bpf/verifier.c
7763
map->map_type != BPF_MAP_TYPE_INSN_ARRAY) {
kernel/bpf/verifier.c
7774
} else if (map->map_type == BPF_MAP_TYPE_INSN_ARRAY) {
kernel/bpf/verifier.c
9757
if (map->map_type == BPF_MAP_TYPE_INSN_ARRAY) {
tools/lib/bpf/libbpf.c
194
[BPF_MAP_TYPE_INSN_ARRAY] = "insn_array",
tools/lib/bpf/libbpf.c
6278
map_fd = bpf_map_create(BPF_MAP_TYPE_INSN_ARRAY, ".jumptables",
tools/lib/bpf/libbpf_probes.c
367
case BPF_MAP_TYPE_INSN_ARRAY:
tools/testing/selftests/bpf/prog_tests/bpf_gotox.c
104
if (map_info.type == BPF_MAP_TYPE_INSN_ARRAY) {
tools/testing/selftests/bpf/prog_tests/bpf_gotox.c
254
return bpf_map_create(BPF_MAP_TYPE_INSN_ARRAY, map_name,
tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c
167
map_fd = map_create(BPF_MAP_TYPE_INSN_ARRAY, 1);
tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c
202
map_fd = map_create(BPF_MAP_TYPE_INSN_ARRAY, 1);
tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c
280
map_fd = map_create(BPF_MAP_TYPE_INSN_ARRAY, ARRAY_SIZE(insns));
tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c
31
map_fd = map_create(BPF_MAP_TYPE_INSN_ARRAY, insn_cnt);
tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c
333
map_fd = map_create(BPF_MAP_TYPE_INSN_ARRAY, ARRAY_SIZE(insns));
tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c
379
map_fd = map_create(BPF_MAP_TYPE_INSN_ARRAY, ARRAY_SIZE(insns));
tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c
430
map_fd = map_create(BPF_MAP_TYPE_INSN_ARRAY, 1);