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
1398
if (attr->map_type != BPF_MAP_TYPE_BLOOM_FILTER &&
kernel/bpf/syscall.c
1479
case BPF_MAP_TYPE_BLOOM_FILTER:
kernel/bpf/syscall.c
1745
if (map->map_type == BPF_MAP_TYPE_BLOOM_FILTER) {
kernel/bpf/syscall.c
291
map->map_type == BPF_MAP_TYPE_BLOOM_FILTER) {
kernel/bpf/syscall.c
335
map->map_type == BPF_MAP_TYPE_BLOOM_FILTER) {
kernel/bpf/verifier.c
10298
case BPF_MAP_TYPE_BLOOM_FILTER:
kernel/bpf/verifier.c
10388
map->map_type != BPF_MAP_TYPE_BLOOM_FILTER)
kernel/bpf/verifier.c
9323
case BPF_MAP_TYPE_BLOOM_FILTER:
tools/lib/bpf/libbpf.c
190
[BPF_MAP_TYPE_BLOOM_FILTER] = "bloom_filter",
tools/lib/bpf/libbpf_probes.c
337
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);