Lines Matching refs:jq_next

376 		|| channel->ch_part[PART_SOCK].ch_json_head.jq_next != NULL;  in channel_still_useful()
379 || channel->ch_part[PART_OUT].ch_json_head.jq_next != NULL; in channel_still_useful()
382 || channel->ch_part[PART_ERR].ch_json_head.jq_next != NULL; in channel_still_useful()
2180 item->jq_next = NULL; in channel_parse_json()
2182 head->jq_next = item; in channel_parse_json()
2184 item->jq_prev->jq_next = item; in channel_parse_json()
2291 head->jq_next = node->jq_next; in remove_json_node()
2293 node->jq_prev->jq_next = node->jq_next; in remove_json_node()
2294 if (node->jq_next == NULL) in remove_json_node()
2297 node->jq_next->jq_prev = node->jq_prev; in remove_json_node()
2375 jsonq_T *item = head->jq_next; in channel_get_json()
2399 item = item->jq_next; in channel_get_json()
2412 jsonq_T *item = head->jq_next; in channel_push_json()
2420 item = item->jq_next; in channel_push_json()
2442 newitem->jq_next = NULL; in channel_push_json()
2444 head->jq_next = newitem; in channel_push_json()
2446 newitem->jq_prev->jq_next = newitem; in channel_push_json()
2452 newitem->jq_next = item->jq_next; in channel_push_json()
2453 item->jq_next = newitem; in channel_push_json()
2454 if (newitem->jq_next == NULL) in channel_push_json()
2457 newitem->jq_next->jq_prev = newitem; in channel_push_json()
3014 if (head->jq_next == NULL) in channel_has_readahead()
3019 return head->jq_next != NULL; in channel_has_readahead()
3264 while (json_head->jq_next != NULL) in channel_clear_one()
3266 free_tv(json_head->jq_next->jq_value); in channel_clear_one()
3267 remove_json_node(json_head, json_head->jq_next); in channel_clear_one()