Home
last modified time | relevance | path

Searched refs:get_map_file (Results 1 – 1 of 1) sorted by relevance

/DragonOS/kernel/src/bpf/map/
H A Dmod.rs257 let map = get_map_file(arg.map_fd as i32)?; in bpf_map_update_elem()
276 let map = get_map_file(map_fd as i32)?; in bpf_map_freeze()
287 let map = get_map_file(arg.map_fd as _)?; in bpf_lookup_elem()
316 let map = get_map_file(arg.map_fd as i32)?; in bpf_map_get_next_key()
347 let map = get_map_file(arg.map_fd as i32)?; in bpf_map_delete_elem()
390 let map = get_map_file(arg.map_fd as i32)?; in bpf_map_lookup_and_delete_elem()
405 fn get_map_file(fd: i32) -> Result<Arc<BpfMap>> { in get_map_file() function