Home | History | Annotate | Download | only in util

Lines Matching refs:head

167  *              head of the queue
209 * DESCRIPTION: return the head element without removing it
219 struct cam_list *head = NULL;
224 head = &m_head.list;
225 pos = head->next;
226 if (pos != head) {
245 * @bFromHead : if true, dequeue from the head
254 struct cam_list *head = NULL;
259 head = &m_head.list;
261 pos = head->next;
263 pos = head->prev;
265 if (pos != head) {
293 struct cam_list *head = NULL;
298 head = &m_head.list;
299 pos = head->next;
301 while(pos != head) {
335 struct cam_list *head = NULL;
344 head = &m_head.list;
345 pos = head->next;
347 while(pos != head) {
380 struct cam_list *head = NULL;
389 head = &m_head.list;
390 pos = head->next;
392 while(pos != head) {