Lines Matching defs:init
113 struct elem init = {};
123 bpf_map_update_elem(map, &lru_key, &init, 0);
146 struct elem init = {};
155 bpf_map_update_elem(&lru, &lru_key, &init, 0);
164 /* init more timers to check that array destruction
284 struct hmap_elem init = {}, *val;
287 init.counter = 10; /* number of times to trigger timer_cb2 */
288 bpf_map_update_elem(&hmap, &key, &init, 0);
293 bpf_map_update_elem(&hmap, &key, &init, 0);
295 bpf_map_update_elem(&hmap_malloc, &key_malloc, &init, 0);
300 bpf_map_update_elem(&hmap_malloc, &key_malloc, &init, 0);
302 /* init more timers to check that htab operations
306 bpf_map_update_elem(&hmap, &key, &init, 0);
311 bpf_map_update_elem(&hmap, &key, &init, 0);
318 bpf_map_update_elem(&hmap_malloc, &key_malloc, &init, 0);
323 bpf_map_update_elem(&hmap_malloc, &key_malloc, &init, 0);
436 struct elem init = {};
438 bpf_map_update_elem(map, key, &init, BPF_ANY);
461 struct elem init;
464 __builtin_memset(&init, 0, sizeof(struct elem));
466 bpf_map_update_elem(&race_array, &key, &init, BPF_ANY);