Searched refs:pprev (Results 1 - 21 of 21) sorted by last modified time

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/libiptc/
H A Dlinux_list.h514 struct hlist_node *next, **pprev; member in struct:hlist_node
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev; local
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/kernel/
H A Dsetup.c110 struct resource *new, *next, **pprev; local
112 for (pprev = &system_ram, next = system_ram; next;
113 pprev = &next->sibling, next = next->sibling) {
139 *pprev = new;
146 struct resource *new, *next, **pprev; local
154 for (pprev = &reserved, next = reserved; next;
155 pprev = &next->sibling, next = next->sibling) {
168 *pprev = new;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/frv/mm/
H A Dpgalloc.c95 struct page *next, **pprev, *page = virt_to_page(pgd); local
97 pprev = (struct page **) page_private(page);
98 *pprev = next;
100 set_page_private(next, (unsigned long) pprev);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/mm/
H A Dpgtable.c226 struct page *next, **pprev, *page = virt_to_page(pgd); local
228 pprev = (struct page **)page_private(page);
229 *pprev = next;
231 set_page_private(next, (unsigned long)pprev);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/ia32/
H A Dsys_ia32.c279 * Else, return 0 and provide @pprev, @rb_link, @rb_parent to
284 struct partial_page **pprev, struct rb_node ***rb_link,
314 *pprev = NULL;
316 *pprev = rb_entry(rb_prev, struct partial_page, pp_rb);
283 __ia32_find_pp(struct partial_page_list *ppl, unsigned int start, struct partial_page **pprev, struct rb_node ***rb_link, struct rb_node **rb_parent) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Ddcache.c92 if (dentry->d_hash.pprev == NULL)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/
H A Dinet_timewait_sock.h157 tw->tw_death_node.pprev = NULL;
H A Dsock.h295 node->pprev = NULL;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/net/sctp/
H A Dstructs.h103 struct sctp_bind_bucket **pprev; member in struct:sctp_bind_bucket
1195 struct sctp_ep_common **pprev; member in struct:sctp_ep_common
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/kernel/
H A Dfork.c199 struct vm_area_struct *mpnt, *tmp, **pprev; local
222 pprev = &mm->mmap;
273 *pprev = tmp;
274 pprev = &tmp->vm_next;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dinit_task.h98 .pid_chain = { .next = NULL, .pprev = NULL }, \
111 .pprev = &init_struct_pid.tasks[type].first, \
H A Dlist.h680 struct hlist_node *next, **pprev; member in struct:hlist_node
689 h->pprev = NULL;
694 return !h->pprev;
705 struct hlist_node **pprev = n->pprev; local
706 *pprev = next;
708 next->pprev = pprev;
715 n->pprev = LIST_POISON2;
740 n->pprev
[all...]
H A Dmm.h1131 struct vm_area_struct **pprev);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dmmap.c337 struct vm_area_struct **pprev, struct rb_node ***rb_link,
364 *pprev = NULL;
366 *pprev = rb_entry(rb_prev, struct vm_area_struct, vm_rb);
1398 /* Same as find_vma, but also return a pointer to the previous VMA in *pprev. */
1401 struct vm_area_struct **pprev)
1429 *pprev = prev;
336 find_vma_prepare(struct mm_struct *mm, unsigned long addr, struct vm_area_struct **pprev, struct rb_node ***rb_link, struct rb_node ** rb_parent) argument
1400 find_vma_prev(struct mm_struct *mm, unsigned long addr, struct vm_area_struct **pprev) argument
H A Dmprotect.c132 mprotect_fixup(struct vm_area_struct *vma, struct vm_area_struct **pprev, argument
144 *pprev = vma;
161 *pprev = vma_merge(mm, *pprev, start, end, newflags,
163 if (*pprev) {
164 vma = *pprev;
168 *pprev = vma;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/
H A Dtunnel4.c22 struct xfrm_tunnel **pprev; local
28 for (pprev = (family == AF_INET) ? &tunnel4_handlers : &tunnel64_handlers;
29 *pprev; pprev = &(*pprev)->next) {
30 if ((*pprev)->priority > priority)
32 if ((*pprev)->priority == priority)
36 handler->next = *pprev;
37 *pprev = handler;
51 struct xfrm_tunnel **pprev; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv6/
H A Droute.c1026 struct dst_entry *dst, *next, **pprev; local
1033 pprev = &ndisc_dst_gc_list;
1035 while ((dst = *pprev) != NULL) {
1037 *pprev = dst->next;
1041 pprev = &dst->next;
H A Dtunnel6.c38 struct xfrm6_tunnel **pprev; local
44 for (pprev = (family == AF_INET6) ? &tunnel6_handlers : &tunnel46_handlers;
45 *pprev; pprev = &(*pprev)->next) {
46 if ((*pprev)->priority > priority)
48 if ((*pprev)->priority == priority)
52 handler->next = *pprev;
53 *pprev = handler;
67 struct xfrm6_tunnel **pprev; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sctp/
H A Dinput.c664 (*epp)->pprev = &epb->next;
666 epb->pprev = epp;
692 if (epb->pprev) {
694 epb->next->pprev = epb->pprev;
695 *epb->pprev = epb->next;
696 epb->pprev = NULL;
754 (*epp)->pprev = &epb->next;
756 epb->pprev = epp;
786 if (epb->pprev) {
[all...]
H A Dsocket.c5319 pp->next->pprev = &pp->next;
5321 pp->pprev = &head->chain;
5331 pp->next->pprev = pp->pprev;
5332 *(pp->pprev) = pp->next;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/iptables-1.x/libiptc/
H A Dlinux_list.h514 struct hlist_node *next, **pprev; member in struct:hlist_node
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev;
535 struct hlist_node **pprev = n->pprev; local
536 *pprev = next;
538 next->pprev = pprev;
545 n->pprev = LIST_POISON2;
570 n->pprev
[all...]

Completed in 158 milliseconds