Lines Matching defs:_map
132 static void *cgroup_storage_lookup_elem(struct bpf_map *_map, void *key)
134 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
182 int bpf_percpu_cgroup_storage_copy(struct bpf_map *_map, void *key,
185 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
201 size = round_up(_map->value_size, 8);
211 int bpf_percpu_cgroup_storage_update(struct bpf_map *_map, void *key,
214 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
235 size = round_up(_map->value_size, 8);
245 static int cgroup_storage_get_next_key(struct bpf_map *_map, void *key,
248 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
330 static void cgroup_storage_map_free(struct bpf_map *_map)
332 struct bpf_cgroup_storage_map *map = map_to_storage(_map);
470 int bpf_cgroup_storage_assign(struct bpf_prog_aux *aux, struct bpf_map *_map)
472 enum bpf_cgroup_storage_type stype = cgroup_storage_type(_map);
475 aux->cgroup_storage[stype] != _map)
478 aux->cgroup_storage[stype] = _map;