Searched defs:ListNode (Results 1 – 11 of 11) sorted by relevance
42 typedef struct ListNode ListNode; typedef43 struct ListNode { struct45 struct ListNode *next; argument
71 typedef struct ListNode { struct72 struct ListNode *next; argument73 struct ListNode *prev; argument74 } ListNode, ListHead; typedef
26 struct ListNode { struct32 ListNode<T> *next; argument
32 typedef struct ListNode ListNode; typedef56 struct ListNode { struct57 ListNode *next; argument58 ServiceInfo info;
28 typedef struct ListNode { struct29 struct ListNode *prev; /* Current node's pointer to the previous node */ argument30 struct ListNode *next; /* Current node's pointer to the next node */ argument31 } ListNode; typedef
97 struct ListNode { struct103 ListNode(ListNode* p, ListNode* n) noexcept : prev {p}, next {n} in ListNode() function
21 typedef struct ListNode { struct33 static ListNode *ListGetFirstNodeInt(const List *list) in ListGetFirstNodeInt() argument
35 struct ListNode : public MemoryHeap { struct37 ListNode *next = nullptr; argument
39 typedef struct ListNode ListNode; typedef
49 struct ListNode { struct50 struct ListNode *next; argument51 struct ListNode *prev; argument
24 typedef ListHead ListNode; typedef