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/const_fold.c
185
map->map_type == BPF_MAP_TYPE_INSN_ARRAY ||
kernel/bpf/syscall.c
1506
case BPF_MAP_TYPE_INSN_ARRAY:
kernel/bpf/syscall.c
2953
if (prog->aux->used_maps[i]->map_type != BPF_MAP_TYPE_INSN_ARRAY)
kernel/bpf/verifier.c
16265
WARN_ON_ONCE(map->map_type != BPF_MAP_TYPE_INSN_ARRAY &&
kernel/bpf/verifier.c
17198
if (verifier_bug_if(map->map_type != BPF_MAP_TYPE_INSN_ARRAY, env,
kernel/bpf/verifier.c
17801
case BPF_MAP_TYPE_INSN_ARRAY:
kernel/bpf/verifier.c
17874
if (map->map_type == BPF_MAP_TYPE_INSN_ARRAY) {
kernel/bpf/verifier.c
4536
if (map->map_type == BPF_MAP_TYPE_INSN_ARRAY)
kernel/bpf/verifier.c
4991
if (reg->map_ptr->map_type == BPF_MAP_TYPE_INSN_ARRAY)
kernel/bpf/verifier.c
6135
map->map_type != BPF_MAP_TYPE_INSN_ARRAY) {
kernel/bpf/verifier.c
6146
} else if (map->map_type == BPF_MAP_TYPE_INSN_ARRAY) {
kernel/bpf/verifier.c
8106
if (map->map_type == BPF_MAP_TYPE_INSN_ARRAY) {
kernel/bpf/verifier.c
8625
case BPF_MAP_TYPE_INSN_ARRAY:
tools/lib/bpf/libbpf.c
198
[BPF_MAP_TYPE_INSN_ARRAY] = "insn_array",
tools/lib/bpf/libbpf.c
6338
map_fd = bpf_map_create(BPF_MAP_TYPE_INSN_ARRAY, ".jumptables",
tools/lib/bpf/libbpf_probes.c
380
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);