Home | History | Annotate | Download | only in libgralloc

Lines Matching refs:mLast

36     NODE*  mLast;
39 LinkedList() : mFirst(0), mLast(0) { }
43 NODE const* tail() const { return mLast; }
44 NODE* tail() { return mLast; }
49 if (node->next == 0) mLast = newNode;
64 mFirst = mLast = newNode;
75 if (mLast == 0) {
78 newNode->prev = mLast;
80 mLast->next = newNode;
81 mLast = newNode;
88 if (node->next == 0) mLast = node->prev;