Symbol: map_create
kernel/bpf/syscall.c
6234
err = map_create(&attr, uattr);
tools/testing/selftests/bpf/map_tests/map_percpu_stats.c
365
return map_create(BPF_MAP_TYPE_HASH, "hash", &map_opts);
tools/testing/selftests/bpf/map_tests/map_percpu_stats.c
372
return map_create(BPF_MAP_TYPE_PERCPU_HASH, "percpu_hash", &map_opts);
tools/testing/selftests/bpf/map_tests/map_percpu_stats.c
377
return map_create(BPF_MAP_TYPE_HASH, "hash", NULL);
tools/testing/selftests/bpf/map_tests/map_percpu_stats.c
382
return map_create(BPF_MAP_TYPE_PERCPU_HASH, "percpu_hash_prealloc", NULL);
tools/testing/selftests/bpf/map_tests/map_percpu_stats.c
389
return map_create(type, "lru_hash", &map_opts);
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);
tools/testing/selftests/bpf/prog_tests/bpf_insn_array.c
445
map_fd = map_create(BPF_MAP_TYPE_ARRAY, 1);