Lines Matching refs:got_next_
215 : got_type_(-1U), got_offset_(0), got_next_(NULL) in Got_offset_list()
219 : got_type_(got_type), got_offset_(got_offset), got_next_(NULL) in Got_offset_list()
224 if (this->got_next_ != NULL) in ~Got_offset_list()
226 delete this->got_next_; in ~Got_offset_list()
227 this->got_next_ = NULL; in ~Got_offset_list()
237 this->got_next_ = NULL; in init()
251 for (Got_offset_list* g = this; g != NULL; g = g->got_next_) in set_offset()
260 g->got_next_ = this->got_next_; in set_offset()
261 this->got_next_ = g; in set_offset()
269 for (const Got_offset_list* g = this; g != NULL; g = g->got_next_) in get_offset()
307 for (const Got_offset_list* g = this; g != NULL; g = g->got_next_) in for_all_got_offsets()
314 Got_offset_list* got_next_; variable