Searched defs:_Node (Results 1 - 2 of 2) sorted by relevance

/system/core/include/sysutils/
H A DList.h49 class _Node { class in class:android::sysutils::List
51 explicit _Node(const T& val) : mVal(val) {} function in class:android::sysutils::List::_Node
52 ~_Node() {}
55 inline _Node* getPrev() const { return mpPrev; }
56 inline _Node* getNext() const { return mpNext; }
58 inline void setPrev(_Node* ptr) { mpPrev = ptr; }
59 inline void setNext(_Node* ptr) { mpNext = ptr; }
64 _Node* mpPrev;
65 _Node* mpNext;
74 typedef _Node cons
[all...]
/system/netd/
H A DList.h49 class _Node { class in class:android::netd::List
51 explicit _Node(const T& val) : mVal(val) {} function in class:android::netd::List::_Node
52 ~_Node() {}
55 inline _Node* getPrev() const { return mpPrev; }
56 inline _Node* getNext() const { return mpNext; }
58 inline void setPrev(_Node* ptr) { mpPrev = ptr; }
59 inline void setNext(_Node* ptr) { mpNext = ptr; }
64 _Node* mpPrev;
65 _Node* mpNext;
74 typedef _Node cons
[all...]

Completed in 150 milliseconds