Home
last modified time | relevance | path

Searched refs:pprev (Results 1 – 6 of 6) sorted by relevance

/external/iproute2/include/
Dhlist.h16 struct hlist_node *next, **pprev; member
22 struct hlist_node **pprev = n->pprev; in hlist_del() local
23 *pprev = next; in hlist_del()
25 next->pprev = pprev; in hlist_del()
33 first->pprev = &n->next; in hlist_add_head()
35 n->pprev = &h->first; in hlist_add_head()
/external/iptables/libiptc/
Dlinux_list.h514 struct hlist_node *next, **pprev; member
520 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
524 return !h->pprev; in hlist_unhashed()
535 struct hlist_node **pprev = n->pprev; in __hlist_del() local
536 *pprev = next; in __hlist_del()
538 next->pprev = pprev; in __hlist_del()
545 n->pprev = LIST_POISON2; in hlist_del()
570 n->pprev = LIST_POISON2; in hlist_del_rcu()
575 if (n->pprev) { in hlist_del_init()
588 first->pprev = &n->next; in hlist_add_head()
[all …]
/external/libnetfilter_conntrack/include/internal/
Dlinux_list.h519 struct hlist_node *next, **pprev; member
525 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
529 return !h->pprev; in hlist_unhashed()
540 struct hlist_node **pprev = n->pprev; in __hlist_del() local
541 *pprev = next; in __hlist_del()
543 next->pprev = pprev; in __hlist_del()
550 n->pprev = LIST_POISON2; in hlist_del()
575 n->pprev = LIST_POISON2; in hlist_del_rcu()
580 if (n->pprev) { in hlist_del_init()
593 first->pprev = &n->next; in hlist_add_head()
[all …]
/external/libnfnetlink/include/
Dlinux_list.h518 struct hlist_node *next, **pprev; member
524 #define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
528 return !h->pprev; in hlist_unhashed()
539 struct hlist_node **pprev = n->pprev; in __hlist_del() local
540 *pprev = next; in __hlist_del()
542 next->pprev = pprev; in __hlist_del()
549 n->pprev = LIST_POISON2; in hlist_del()
574 n->pprev = LIST_POISON2; in hlist_del_rcu()
579 if (n->pprev) { in hlist_del_init()
592 first->pprev = &n->next; in hlist_add_head()
[all …]
/external/webrtc/webrtc/libjingle/xmllite/
Dxmlelement.cc363 XmlAttr ** pprev = last_attr_ ? &(last_attr_->next_attr_) : &first_attr_; in AddAttr() local
364 last_attr_ = (*pprev = new XmlAttr(name, value)); in AddAttr()
384 XmlChild ** pprev = last_child_ ? &(last_child_->next_child_) : &first_child_; in AddParsedText() local
385 last_child_ = *pprev = new XmlText(cstr, len); in AddParsedText()
401 XmlChild ** pprev = last_child_ ? &(last_child_->next_child_) : &first_child_; in AddText() local
402 last_child_ = *pprev = new XmlText(text); in AddText()
419 XmlChild ** pprev = last_child_ ? &(last_child_->next_child_) : &first_child_; in AddElement() local
420 *pprev = child; in AddElement()
/external/linux-kselftest/tools/testing/selftests/rcutorture/formal/srcu-cbmc/include/linux/
Dtypes.h120 struct hlist_node *next, **pprev; member