Lines Matching refs:bpf_map
17 struct bpf_map map;
25 static struct bpf_queue_stack *bpf_queue_stack(struct bpf_map *map) in bpf_queue_stack()
67 static struct bpf_map *queue_stack_map_alloc(union bpf_attr *attr) in queue_stack_map_alloc()
92 static void queue_stack_map_free(struct bpf_map *map) in queue_stack_map_free()
99 static int __queue_map_get(struct bpf_map *map, void *value, bool delete) in __queue_map_get()
133 static int __stack_map_get(struct bpf_map *map, void *value, bool delete) in __stack_map_get()
170 static int queue_map_peek_elem(struct bpf_map *map, void *value) in queue_map_peek_elem()
176 static int stack_map_peek_elem(struct bpf_map *map, void *value) in stack_map_peek_elem()
182 static int queue_map_pop_elem(struct bpf_map *map, void *value) in queue_map_pop_elem()
188 static int stack_map_pop_elem(struct bpf_map *map, void *value) in stack_map_pop_elem()
194 static int queue_stack_map_push_elem(struct bpf_map *map, void *value, in queue_stack_map_push_elem()
240 static void *queue_stack_map_lookup_elem(struct bpf_map *map, void *key) in queue_stack_map_lookup_elem()
246 static int queue_stack_map_update_elem(struct bpf_map *map, void *key, in queue_stack_map_update_elem()
253 static int queue_stack_map_delete_elem(struct bpf_map *map, void *key) in queue_stack_map_delete_elem()
259 static int queue_stack_map_get_next_key(struct bpf_map *map, void *key, in queue_stack_map_get_next_key()