Home | History | Annotate | Download | only in ssl

Lines Matching refs:items

14     pitem *items;
57 if (pq->items == NULL) {
58 pq->items = item;
62 for (curr = NULL, next = pq->items;
72 pq->items = item;
91 return pq->items;
96 pitem *item = pq->items;
98 if (pq->items != NULL)
99 pq->items = pq->items->next;
109 if (pq->items == NULL)
112 for (next = pq->items; next->next != NULL; next = next->next) {
150 pitem *item = pq->items;