Searched refs:pprev (Results 1 – 10 of 10) sorted by relevance
| /tools/testing/selftests/bpf/ |
| D | bpf_arena_list.h | 12 arena_list_node_t * __arena *pprev; member 54 WRITE_ONCE(first->pprev, tmp); in list_add_head() 62 WRITE_ONCE(n->pprev, tmp); in list_add_head() 68 arena_list_node_t * __arena *pprev = n->pprev; in __list_del() local 71 cast_kern(pprev); in __list_del() 72 tmp = *pprev; in __list_del() 76 cast_user(pprev); in __list_del() 78 WRITE_ONCE(next->pprev, pprev); in __list_del() 91 n->pprev = LIST_POISON2; in list_del()
|
| /tools/lib/bpf/ |
| D | hashmap.c | 24 static void hashmap_add_entry(struct hashmap_entry **pprev, in hashmap_add_entry() argument 27 entry->next = *pprev; in hashmap_add_entry() 28 *pprev = entry; in hashmap_add_entry() 31 static void hashmap_del_entry(struct hashmap_entry **pprev, in hashmap_del_entry() argument 34 *pprev = entry->next; in hashmap_del_entry() 132 struct hashmap_entry ***pprev, in hashmap_find_entry() argument 144 if (pprev) in hashmap_find_entry() 145 *pprev = prev_ptr; in hashmap_find_entry() 223 struct hashmap_entry **pprev, *entry; in hashmap_delete() local 227 if (!hashmap_find_entry(map, key, h, &pprev, &entry)) in hashmap_delete() [all …]
|
| /tools/perf/util/ |
| D | hashmap.c | 24 static void hashmap_add_entry(struct hashmap_entry **pprev, in hashmap_add_entry() argument 27 entry->next = *pprev; in hashmap_add_entry() 28 *pprev = entry; in hashmap_add_entry() 31 static void hashmap_del_entry(struct hashmap_entry **pprev, in hashmap_del_entry() argument 34 *pprev = entry->next; in hashmap_del_entry() 132 struct hashmap_entry ***pprev, in hashmap_find_entry() argument 144 if (pprev) in hashmap_find_entry() 145 *pprev = prev_ptr; in hashmap_find_entry() 223 struct hashmap_entry **pprev, *entry; in hashmap_delete() local 227 if (!hashmap_find_entry(map, key, h, &pprev, &entry)) in hashmap_delete() [all …]
|
| /tools/include/linux/ |
| D | list.h | 612 h->pprev = NULL; in INIT_HLIST_NODE() 617 return !h->pprev; in hlist_unhashed() 628 struct hlist_node **pprev = n->pprev; in __hlist_del() local 630 WRITE_ONCE(*pprev, next); in __hlist_del() 632 next->pprev = pprev; in __hlist_del() 639 n->pprev = LIST_POISON2; in hlist_del() 655 first->pprev = &n->next; in hlist_add_head() 657 n->pprev = &h->first; in hlist_add_head() 664 n->pprev = next->pprev; in hlist_add_before() 666 next->pprev = &n->next; in hlist_add_before() [all …]
|
| D | types.h | 98 struct hlist_node *next, **pprev; member
|
| /tools/testing/selftests/bpf/progs/ |
| D | btf_dump_test_case_ordering.c | 38 struct hlist_node **pprev; member
|
| D | bpf_iter_tcp4.c | 12 return !(h->pprev); in hlist_unhashed_lockless()
|
| D | bpf_iter_tcp6.c | 12 return !(h->pprev); in hlist_unhashed_lockless()
|
| /tools/bpf/bpftool/bash-completion/ |
| D | bpftool | 297 local i pprev 309 pprev=${words[cword - 2]} 721 case $pprev in 906 case $pprev in 920 case $pprev in 1188 elif [[ $pprev == "$command" ]]; then
|
| /tools/testing/vma/ |
| D | vma_internal.h | 575 struct vm_area_struct **pprev) in find_vma_prev() argument 581 *pprev = vma_prev(&vmi); in find_vma_prev()
|