Searched defs:ListNode (Results 1 – 8 of 8) sorted by relevance
42 typedef struct ListNode ListNode; typedef43 struct ListNode { struct45 struct ListNode *next; argument
32 typedef struct ListNode ListNode; typedef56 struct ListNode { struct57 ListNode *next; argument58 ServiceInfo info;
97 struct ListNode { struct103 ListNode(ListNode* p, ListNode* n) noexcept : prev {p}, next {n} in ListNode() argument
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
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
1800 get ListNode() { getter in anonymousFunction058cc49e0100.D