Lines Matching defs:key
370 int bpf_map_update_elem(int fd, const void *key, const void *value,
377 attr.key = ptr_to_u64(key);
384 int bpf_map_lookup_elem(int fd, const void *key, void *value)
390 attr.key = ptr_to_u64(key);
396 int bpf_map_lookup_elem_flags(int fd, const void *key, void *value, __u64 flags)
402 attr.key = ptr_to_u64(key);
409 int bpf_map_lookup_and_delete_elem(int fd, const void *key, void *value)
415 attr.key = ptr_to_u64(key);
421 int bpf_map_delete_elem(int fd, const void *key)
427 attr.key = ptr_to_u64(key);
432 int bpf_map_get_next_key(int fd, const void *key, void *next_key)
438 attr.key = ptr_to_u64(key);