Searched refs:map_lookup_elem (Results 1 – 6 of 6) sorted by relevance
38 value = map->ops->map_lookup_elem(map, key); in bpf_map_lookup_elem()
147 static int map_lookup_elem(union bpf_attr *attr) in map_lookup_elem() function179 ptr = map->ops->map_lookup_elem(map, key); in map_lookup_elem()601 err = map_lookup_elem(&attr); in SYSCALL_DEFINE3()
141 .map_lookup_elem = array_map_lookup_elem,
352 .map_lookup_elem = htab_map_lookup_elem,
24 void *(*map_lookup_elem)(struct bpf_map *map, void *key); member
1186 Program that uses invalid map_fd=0 while calling to map_lookup_elem() function:1201 Program that doesn't check return value of map_lookup_elem() before accessing1219 Program that correctly checks map_lookup_elem() returned value for NULL, but1240 Program that correctly checks map_lookup_elem() returned value for NULL and