Lines Matching defs:key
380 int bpf_map_update_elem(int fd, const void *key, const void *value,
389 attr.key = ptr_to_u64(key);
397 int bpf_map_lookup_elem(int fd, const void *key, void *value)
405 attr.key = ptr_to_u64(key);
412 int bpf_map_lookup_elem_flags(int fd, const void *key, void *value, __u64 flags)
420 attr.key = ptr_to_u64(key);
428 int bpf_map_lookup_and_delete_elem(int fd, const void *key, void *value)
436 attr.key = ptr_to_u64(key);
443 int bpf_map_lookup_and_delete_elem_flags(int fd, const void *key, void *value, __u64 flags)
451 attr.key = ptr_to_u64(key);
459 int bpf_map_delete_elem(int fd, const void *key)
467 attr.key = ptr_to_u64(key);
473 int bpf_map_delete_elem_flags(int fd, const void *key, __u64 flags)
481 attr.key = ptr_to_u64(key);
488 int bpf_map_get_next_key(int fd, const void *key, void *next_key)
496 attr.key = ptr_to_u64(key);