Lines Matching defs:item
30 void nghttp2_outbound_item_init(nghttp2_outbound_item *item) {
31 item->cycle = 0;
32 item->qnext = NULL;
33 item->queued = 0;
35 memset(&item->aux_data, 0, sizeof(nghttp2_aux_data));
38 void nghttp2_outbound_item_free(nghttp2_outbound_item *item, nghttp2_mem *mem) {
41 if (item == NULL) {
45 frame = &item->frame;
78 aux_data = &item->aux_data.ext;
109 nghttp2_outbound_item *item) {
111 q->tail = q->tail->qnext = item;
113 q->head = q->tail = item;
119 nghttp2_outbound_item *item;
123 item = q->head;
125 item->qnext = NULL;