/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/ |
H A D | test_lpm_map.c | 210 LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = BPF_F_NO_PREALLOC); in test_lpm_map() 333 LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = BPF_F_NO_PREALLOC); in test_lpm_ipaddr() 425 LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = BPF_F_NO_PREALLOC); in test_lpm_delete() 534 LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = BPF_F_NO_PREALLOC); in test_lpm_get_next_key() 746 LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = BPF_F_NO_PREALLOC); in test_lpm_multi_thread()
|
H A D | test_verifier.c | 551 LIBBPF_OPTS(bpf_map_create_opts, opts); in __create_map() 642 LIBBPF_OPTS(bpf_map_create_opts, opts); in create_map_in_map() 807 LIBBPF_OPTS(bpf_map_create_opts, opts, in create_map_spin_lock() 825 LIBBPF_OPTS(bpf_map_create_opts, opts, in create_sk_storage_map() 845 LIBBPF_OPTS(bpf_map_create_opts, opts, in create_map_timer() 864 LIBBPF_OPTS(bpf_map_create_opts, opts, in create_map_kptr()
|
H A D | test_tag.c | 187 LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = BPF_F_NO_PREALLOC); in main()
|
H A D | test_lru_map.c | 30 LIBBPF_OPTS(bpf_map_create_opts, opts, .map_flags = map_flags); in create_map()
|
H A D | test_maps.c | 35 static struct bpf_map_create_opts map_opts = { .sz = sizeof(map_opts) };
|
/aosp_15_r20/external/rust/android-crates-io/crates/libbpf-rs/tests/ |
D | test.rs | 331 let opts = libbpf_sys::bpf_map_create_opts { in test_map_info() 332 sz: size_of::<libbpf_sys::bpf_map_create_opts>() as libbpf_sys::size_t, in test_map_info() 1370 let opts = libbpf_sys::bpf_map_create_opts { in test_object_map_iter() 1371 sz: size_of::<libbpf_sys::bpf_map_create_opts>() as libbpf_sys::size_t, in test_object_map_iter() 1421 let opts = libbpf_sys::bpf_map_create_opts { in test_object_map_create_and_pin() 1422 sz: size_of::<libbpf_sys::bpf_map_create_opts>() as libbpf_sys::size_t, in test_object_map_create_and_pin() 1468 let opts = libbpf_sys::bpf_map_create_opts { in test_object_map_create_without_name() 1469 sz: size_of::<libbpf_sys::bpf_map_create_opts>() as libbpf_sys::size_t, in test_object_map_create_without_name()
|
/aosp_15_r20/external/libbpf/src/ |
H A D | features.c | 57 LIBBPF_OPTS(bpf_map_create_opts, map_opts, in probe_kern_global_data() 216 LIBBPF_OPTS(bpf_map_create_opts, opts, in probe_kern_array_mmap() 275 LIBBPF_OPTS(bpf_map_create_opts, map_opts, in probe_prog_bind_map()
|
H A D | bpf.h | 40 struct bpf_map_create_opts { struct 66 const struct bpf_map_create_opts *opts); argument
|
H A D | bpf_gen_internal.h | 61 struct bpf_map_create_opts *map_attr, int map_idx);
|
H A D | libbpf_probes.c | 284 LIBBPF_OPTS(bpf_map_create_opts, opts); in probe_map_create()
|
H A D | bpf.c | 173 const struct bpf_map_create_opts *opts) in bpf_map_create() 183 if (!OPTS_VALID(opts, bpf_map_create_opts)) in bpf_map_create()
|
H A D | gen_loader.c | 452 struct bpf_map_create_opts *map_attr, int map_idx) in bpf_gen__map_create()
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/prog_tests/ |
H A D | bloom_filter_map.c | 10 LIBBPF_OPTS(bpf_map_create_opts, opts); in test_fail_cases() 60 LIBBPF_OPTS(bpf_map_create_opts, opts); in test_success_cases()
|
H A D | select_reuseport.c | 68 LIBBPF_OPTS(bpf_map_create_opts, opts); in create_maps()
|
H A D | btf.c | 4243 LIBBPF_OPTS(bpf_map_create_opts, opts); in do_test_raw() 4450 LIBBPF_OPTS(bpf_map_create_opts, opts); in test_btf_id() 5307 LIBBPF_OPTS(bpf_map_create_opts, opts); in do_test_pprint()
|
/aosp_15_r20/out/soong/.intermediates/external/libbpf/libbpf_headers/gen/bpf/ |
D | bpf.h | 40 struct bpf_map_create_opts { struct 66 const struct bpf_map_create_opts *opts); argument
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/map_tests/ |
H A D | sk_storage_map.c | 22 static struct bpf_map_create_opts map_opts = { 462 struct bpf_map_create_opts bad_xattr; in test_sk_storage_map_basic()
|
H A D | lpm_trie_map_batch_ops.c | 68 LIBBPF_OPTS(bpf_map_create_opts, create_opts, .map_flags = BPF_F_NO_PREALLOC); in test_lpm_trie_map_batch_ops()
|
H A D | map_in_map_batch_ops.c | 69 LIBBPF_OPTS(bpf_map_create_opts, attr); in create_outer_map()
|
/aosp_15_r20/external/linux-kselftest/tools/testing/selftests/bpf/benchs/ |
H A D | bench_local_storage.c | 120 LIBBPF_OPTS(bpf_map_create_opts, create_opts); in __setup()
|
/aosp_15_r20/external/bpftool/src/ |
H A D | feature.c | 595 LIBBPF_OPTS(bpf_map_create_opts, opts); in probe_map_type_ifindex()
|
H A D | map.c | 1241 LIBBPF_OPTS(bpf_map_create_opts, attr); in do_create()
|
/aosp_15_r20/external/rust/android-crates-io/crates/libbpf-rs/src/ |
D | map.rs | 895 opts: &libbpf_sys::bpf_map_create_opts, in create() argument
|
/aosp_15_r20/external/bcc/src/cc/ |
H A D | libbpf.c | 330 LIBBPF_OPTS(bpf_map_create_opts, p); in libbpf_bpf_map_create()
|
/aosp_15_r20/out/soong/.intermediates/external/rust/android-crates-io/crates/libbpf-sys/liblibbpf_sys/android_arm64_armv8-2a_cortex-a55_dylib/out/ |
D | bindgen.rs | 3077 pub struct bpf_map_create_opts { struct 3098 opts: *const bpf_map_create_opts, in bpf_map_create() argument
|