Symbol: BPF_MAP_TYPE_BLOOM_FILTER
include/linux/bpf_types.h
133
BPF_MAP_TYPE(BPF_MAP_TYPE_BLOOM_FILTER, bloom_filter_map_ops)
kernel/bpf/syscall.c
1408
if (attr->map_type != BPF_MAP_TYPE_BLOOM_FILTER &&
kernel/bpf/syscall.c
1495
case BPF_MAP_TYPE_BLOOM_FILTER:
kernel/bpf/syscall.c
1816
if (map->map_type == BPF_MAP_TYPE_BLOOM_FILTER) {
kernel/bpf/syscall.c
292
map->map_type == BPF_MAP_TYPE_BLOOM_FILTER) {
kernel/bpf/syscall.c
336
map->map_type == BPF_MAP_TYPE_BLOOM_FILTER) {
kernel/bpf/verifier.c
7709
case BPF_MAP_TYPE_BLOOM_FILTER:
kernel/bpf/verifier.c
8620
case BPF_MAP_TYPE_BLOOM_FILTER:
kernel/bpf/verifier.c
8710
map->map_type != BPF_MAP_TYPE_BLOOM_FILTER)
tools/lib/bpf/libbpf.c
194
[BPF_MAP_TYPE_BLOOM_FILTER] = "bloom_filter",
tools/lib/bpf/libbpf_probes.c
350
case BPF_MAP_TYPE_BLOOM_FILTER:
tools/testing/selftests/bpf/prog_tests/bloom_filter_map.c
116
inner_map_fd = bpf_map_create(BPF_MAP_TYPE_BLOOM_FILTER, NULL, 0, sizeof(*rand_vals),
tools/testing/selftests/bpf/prog_tests/bloom_filter_map.c
20
fd = bpf_map_create(BPF_MAP_TYPE_BLOOM_FILTER, NULL, 4, sizeof(value), 100, NULL);
tools/testing/selftests/bpf/prog_tests/bloom_filter_map.c
25
fd = bpf_map_create(BPF_MAP_TYPE_BLOOM_FILTER, NULL, 0, 0, 100, NULL);
tools/testing/selftests/bpf/prog_tests/bloom_filter_map.c
30
fd = bpf_map_create(BPF_MAP_TYPE_BLOOM_FILTER, NULL, 0, INT32_MAX, 100, NULL);
tools/testing/selftests/bpf/prog_tests/bloom_filter_map.c
35
fd = bpf_map_create(BPF_MAP_TYPE_BLOOM_FILTER, NULL, 0, sizeof(value), 0, NULL);
tools/testing/selftests/bpf/prog_tests/bloom_filter_map.c
41
fd = bpf_map_create(BPF_MAP_TYPE_BLOOM_FILTER, NULL, 0, sizeof(value), 100, &opts);
tools/testing/selftests/bpf/prog_tests/bloom_filter_map.c
45
fd = bpf_map_create(BPF_MAP_TYPE_BLOOM_FILTER, NULL, 0, sizeof(value), 100, NULL);
tools/testing/selftests/bpf/prog_tests/bloom_filter_map.c
77
fd = bpf_map_create(BPF_MAP_TYPE_BLOOM_FILTER, NULL, 0, sizeof(value), 100, &opts);
tools/testing/selftests/bpf/progs/bloom_filter_bench.c
26
__uint(type, BPF_MAP_TYPE_BLOOM_FILTER);
tools/testing/selftests/bpf/progs/bloom_filter_map.c
20
__uint(type, BPF_MAP_TYPE_BLOOM_FILTER);