Lines Matching refs:inner_map
55 struct inner_map { struct
60 } inner_map SEC(".maps");
67 __array(values, struct inner_map);
69 .values = { [0] = &inner_map },
76 __array(values, struct inner_map);
78 .values = { [0] = &inner_map },
112 struct inner_map *inner_map; in BPF_PROG() local
141 inner_map = bpf_map_lookup_elem(&outer_arr, &key); in BPF_PROG()
142 if (inner_map) { in BPF_PROG()
143 value = bpf_map_lookup_elem(inner_map, &key); in BPF_PROG()
147 inner_map = bpf_map_lookup_elem(&outer_hash, &key); in BPF_PROG()
148 if (inner_map) { in BPF_PROG()
149 value = bpf_map_lookup_elem(inner_map, &key); in BPF_PROG()