Lines Matching defs:value
44 printf(" -v <value> `- map value\n");
78 uint32_t value)
98 ret = bpf_map_update_elem(fd, &key, &value, 0);
99 printf("bpf: fd:%d u->(%u:%u) ret:(%d,%s)\n", fd, key, value,
103 ret = bpf_map_lookup_elem(fd, &key, &value);
104 printf("bpf: fd:%d l->(%u):%u ret:(%d,%s)\n", fd, key, value,
144 uint32_t key = 0, value = 0, flags = 0;
168 value = strtoul(optarg, NULL, 0);
188 return bpf_do_map(file, flags, key, value);