Searched refs:queue_head_ (Results 1 - 1 of 1) sorted by relevance

/external/libchrome/base/trace_event/
H A Dtrace_buffer.cc25 queue_head_(0),
41 *index = recyclable_chunks_queue_[queue_head_];
42 queue_head_ = NextQueueIndex(queue_head_);
43 current_iteration_index_ = queue_head_;
109 for (size_t queue_index = queue_head_; queue_index != queue_tail_;
119 bool QueueIsEmpty() const { return queue_head_ == queue_tail_; }
122 return queue_tail_ > queue_head_
123 ? queue_tail_ - queue_head_
124 : queue_tail_ + queue_capacity() - queue_head_;
145 size_t queue_head_; member in class:base::trace_event::__anon10102::TraceBufferRingBuffer
[all...]

Completed in 97 milliseconds