Lines Matching refs:inner_map
54 struct inner_map { struct
59 } inner_map SEC(".maps");
66 __array(values, struct inner_map);
68 .values = { [0] = &inner_map },
75 __array(values, struct inner_map);
77 .values = { [0] = &inner_map },
111 struct inner_map *inner_map; in BPF_PROG() local
140 inner_map = bpf_map_lookup_elem(&outer_arr, &key); in BPF_PROG()
141 if (inner_map) { in BPF_PROG()
142 value = bpf_map_lookup_elem(inner_map, &key); in BPF_PROG()
146 inner_map = bpf_map_lookup_elem(&outer_hash, &key); in BPF_PROG()
147 if (inner_map) { in BPF_PROG()
148 value = bpf_map_lookup_elem(inner_map, &key); in BPF_PROG()