Lines Matching refs:element
29 status_t Push(Element* element);
30 status_t Pop(Element** element,
32 status_t Peek(Element** element);
33 status_t Remove(Element* element);
91 BlockingQueue<Element>::Push(Element* element) in Push() argument
97 fElements.push_back(element); in Push()
110 BlockingQueue<Element>::Pop(Element** element, bigtime_t timeout) in Pop() argument
122 *element = fElements[0]; in Pop()
130 BlockingQueue<Element>::Peek(Element** element) in Peek() argument
138 *element = fElements[0]; in Peek()
145 BlockingQueue<Element>::Remove(Element* element) in Remove() argument
157 if (fElements[i] == element) { in Remove()