| /linux/tools/perf/util/ |
| H A D | bpf_lock_contention.c | 65 long key, *prev_key; in run_slab_cache_iter() local 84 prev_key = NULL; in run_slab_cache_iter() 85 while (!bpf_map_get_next_key(fd, prev_key, &key)) { in run_slab_cache_iter() 96 prev_key = &key; in run_slab_cache_iter() 402 long key, *prev_key; in lock_contention_prepare() local 408 prev_key = NULL; in lock_contention_prepare() 409 while (!bpf_map_get_next_key(cache_fd, prev_key, &key)) { in lock_contention_prepare() 421 prev_key = &key; in lock_contention_prepare() 493 int *prev_key, key; in account_end_timestamp() local 503 prev_key = NULL; in account_end_timestamp() [all …]
|
| H A D | bpf_map.c | 32 void *prev_key = NULL, *key, *value; in bpf_map__fprintf() local 48 while ((err = bpf_map_get_next_key(fd, prev_key, key) == 0)) { in bpf_map__fprintf() 59 prev_key = key; in bpf_map__fprintf()
|
| H A D | bpf-trace-summary.c | 380 struct syscall_key *prev_key, key; in trace_print_bpf_summary() local 394 prev_key = NULL; in trace_print_bpf_summary() 395 while (!bpf_map__get_next_key(map, prev_key, &key, sizeof(key))) { in trace_print_bpf_summary() 414 prev_key = &key; in trace_print_bpf_summary()
|
| H A D | bpf-filter.c | 238 u64 key, *prev_key = NULL; in destroy_event_hash() local 253 while (!bpf_map_get_next_key(fd, prev_key, &key)) { in destroy_event_hash() 270 prev_key = &key; in destroy_event_hash()
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | stacktrace_build_id.c | 11 __u32 key, prev_key, val, duration = 0; in test_stacktrace_build_id() local 77 prev_key = key; in test_stacktrace_build_id() 78 } while (bpf_map__get_next_key(skel->maps.stackmap, &prev_key, &key, sizeof(key)) == 0); in test_stacktrace_build_id()
|
| H A D | stacktrace_build_id_nmi.c | 15 __u32 key, prev_key, val, duration = 0; in test_stacktrace_build_id_nmi() local 105 prev_key = key; in test_stacktrace_build_id_nmi() 106 } while (bpf_map__get_next_key(skel->maps.stackmap, &prev_key, &key, sizeof(key)) == 0); in test_stacktrace_build_id_nmi()
|
| /linux/kernel/ |
| H A D | static_call_inline.c | 225 struct static_call_key *key, *prev_key = NULL; in __static_call_init() local 241 if (key != prev_key) { in __static_call_init() 242 prev_key = key; in __static_call_init() 407 struct static_call_key *key, *prev_key = NULL; in static_call_del_module() local 424 if (key == prev_key) in static_call_del_module() 427 prev_key = key; in static_call_del_module()
|
| /linux/net/mac80211/ |
| H A D | key.c | 1370 struct ieee80211_key *prev_key; in ieee80211_gtk_rekey_add() local 1390 prev_key = wiphy_dereference(local->hw.wiphy, in ieee80211_gtk_rekey_add() 1392 if (!prev_key) { in ieee80211_gtk_rekey_add() 1397 prev_key = wiphy_dereference(local->hw.wiphy, in ieee80211_gtk_rekey_add() 1399 if (prev_key) in ieee80211_gtk_rekey_add() 1404 prev_key = wiphy_dereference(local->hw.wiphy, in ieee80211_gtk_rekey_add() 1409 if (WARN_ON(!prev_key)) in ieee80211_gtk_rekey_add() 1412 if (WARN_ON(key_len < prev_key->conf.keylen)) in ieee80211_gtk_rekey_add() 1415 key = ieee80211_key_alloc(prev_key->conf.cipher, idx, in ieee80211_gtk_rekey_add() 1416 prev_key->conf.keylen, key_data, in ieee80211_gtk_rekey_add()
|
| /linux/lib/ |
| H A D | rbtree_test.c | 196 u32 prev_key = 0; in check() local 200 WARN_ON_ONCE(node->key < prev_key); in check() 208 prev_key = node->key; in check()
|
| /linux/kernel/bpf/ |
| H A D | inode.c | 217 void *prev_key; in map_seq_next() local 224 prev_key = NULL; in map_seq_next() 226 prev_key = key; in map_seq_next() 229 if (map->ops->map_get_next_key(map, prev_key, key)) { in map_seq_next()
|
| H A D | syscall.c | 2057 void *buf, *buf_prevkey, *prev_key, *key, *value; in generic_map_lookup_batch() local 2085 prev_key = NULL; in generic_map_lookup_batch() 2091 prev_key = buf_prevkey; in generic_map_lookup_batch() 2095 err = map->ops->map_get_next_key(map, prev_key, key); in generic_map_lookup_batch() 2120 if (!prev_key) in generic_map_lookup_batch() 2121 prev_key = buf_prevkey; in generic_map_lookup_batch() 2123 swap(prev_key, key); in generic_map_lookup_batch() 2131 (cp && copy_to_user(uobatch, prev_key, map->key_size)))) in generic_map_lookup_batch()
|
| /linux/tools/bpf/bpftool/ |
| H A D | map.c | 829 void *key, *value, *prev_key; in map_dump() local 842 prev_key = NULL; in map_dump() 869 err = bpf_map_get_next_key(fd, prev_key, key); in map_dump() 877 prev_key = key; in map_dump()
|