Searched refs:pprev (Results 1 – 8 of 8) sorted by relevance
/external/libnfnetlink/include/ |
D | linux_list.h | 518 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/iptables/libiptc/ |
D | linux_list.h | 514 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/ |
D | linux_list.h | 519 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/iproute2/include/ |
D | list.h | 88 struct hlist_node *next, **pprev; member 94 struct hlist_node **pprev = n->pprev; in hlist_del() local 95 *pprev = next; in hlist_del() 97 next->pprev = pprev; in hlist_del() 105 first->pprev = &n->next; in hlist_add_head() 107 n->pprev = &h->first; in hlist_add_head()
|
/external/u-boot/include/linux/ |
D | list.h | 548 struct hlist_node *next, **pprev; member 557 h->pprev = NULL; in INIT_HLIST_NODE() 562 return !h->pprev; in hlist_unhashed() 573 struct hlist_node **pprev = n->pprev; in __hlist_del() local 574 *pprev = next; in __hlist_del() 576 next->pprev = pprev; in __hlist_del() 583 n->pprev = LIST_POISON2; in hlist_del() 599 first->pprev = &n->next; in hlist_add_head() 601 n->pprev = &h->first; in hlist_add_head() 608 n->pprev = next->pprev; in hlist_add_before() [all …]
|
/external/webrtc/webrtc/libjingle/xmllite/ |
D | xmlelement.cc | 363 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/ |
D | types.h | 121 struct hlist_node *next, **pprev; member
|
/external/yapf/yapf/yapflib/ |
D | format_decision_state.py | 604 pprev = previous.previous_token 605 if not pprev or not pprev.is_name:
|