Searched refs:pprev (Results 1 – 10 of 10) sorted by relevance
| /tools/testing/selftests/bpf/ |
| A 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/perf/util/ |
| A 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/lib/bpf/ |
| A 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/ |
| A 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 632 next->pprev = pprev; in __hlist_del() 639 n->pprev = LIST_POISON2; in hlist_del() 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() 667 *(n->pprev) = n; in hlist_add_before() 675 n->pprev = &prev->next; in hlist_add_behind() [all …]
|
| A D | types.h | 100 struct hlist_node *next, **pprev; member
|
| /tools/testing/selftests/bpf/progs/ |
| A D | btf_dump_test_case_ordering.c | 38 struct hlist_node **pprev; member
|
| A D | bpf_iter_tcp4.c | 12 return !(h->pprev); in hlist_unhashed_lockless()
|
| A D | bpf_iter_tcp6.c | 12 return !(h->pprev); in hlist_unhashed_lockless()
|
| /tools/bpf/bpftool/bash-completion/ |
| A D | bpftool | 297 local i pprev 309 pprev=${words[cword - 2]} 735 case $pprev in 920 case $pprev in 934 case $pprev in 1207 elif [[ $pprev == "$command" ]]; then
|
| /tools/testing/vma/ |
| A D | vma_internal.h | 797 struct vm_area_struct **pprev) in find_vma_prev() argument 803 *pprev = vma_prev(&vmi); in find_vma_prev()
|
Completed in 21 milliseconds