Lines Matching defs:key
277 __u32 key, next_key;
282 err = bpf_map_get_next_key(map1_fd, NULL, &key);
285 err = bpf_map_lookup_elem(map2_fd, &key, val_buf);
289 while (bpf_map_get_next_key(map1_fd, &key, &next_key) == 0) {
294 key = next_key;
304 __u32 key, next_key, *cur_key_p, *next_key_p;
311 next_key_p = &key;
325 key = *next_key_p;
326 cur_key_p = &key;
468 static error_t parse_arg(int key, char *arg, struct argp_state *state)
472 switch (key) {