Home
last modified time | relevance | path

Searched refs:head_ (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/third_party/googletest/googletest/samples/
Dsample3-inl.h77 Queue() : head_(NULL), last_(NULL), size_(0) {} in Queue()
86 QueueNode<E>* node = head_; in Clear()
96 head_ = last_ = NULL; in Clear()
105 QueueNode<E>* Head() { return head_; } in Head()
106 const QueueNode<E>* Head() const { return head_; } in Head()
120 head_ = last_ = new_node; in Enqueue()
136 const QueueNode<E>* const old_head = head_; in Dequeue()
137 head_ = head_->next_; in Dequeue()
155 for (const QueueNode<E>* node = head_; node != NULL; node = node->next_) { in Map()
163 QueueNode<E>* head_; // The first node of the queue.
/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_library_list.cpp52 LibraryList::LibraryList() : head_(0), count_(0), has_error_(false) { in LibraryList()
58 head_ = NULL; in ~LibraryList()
149 for (SharedLibrary* lib = head_; lib; lib = lib->list_next_) { in FindArmExIdx()
161 for (SharedLibrary* lib = head_; lib; lib = lib->list_next_) { in IteratePhdr()
197 if (lib == head_) in UnloadLibrary()
198 head_ = lib->list_next_; in UnloadLibrary()
352 lib->list_next_ = head_; in LoadLibrary()
354 if (head_) in LoadLibrary()
355 head_->list_prev_ = lib.Get(); in LoadLibrary()
356 head_ = lib.Get(); in LoadLibrary()
Dcrazy_linker_library_list.h96 SharedLibrary* head_; variable