Lines Matching refs:next
200 q = q->next; in coap_adjust_basetime()
231 node->next = q; in coap_insert_node()
241 q = q->next; in coap_insert_node()
248 node->next = q; in coap_insert_node()
249 p->next = node; in coap_insert_node()
269 coap_delete_all( queue->next ); in coap_delete_all()
299 coap_queue_t *next; in coap_pop_next() local
304 next = context->sendqueue; in coap_pop_next()
305 context->sendqueue = context->sendqueue->next; in coap_pop_next()
307 context->sendqueue->t += next->t; in coap_pop_next()
309 next->next = NULL; in coap_pop_next()
310 return next; in coap_pop_next()
944 *queue = (*queue)->next; in coap_remove_from_queue()
948 (*node)->next = NULL; in coap_remove_from_queue()
958 q = q->next; in coap_remove_from_queue()
962 p->next = q->next; in coap_remove_from_queue()
963 if (p->next) { /* must update relative time of p->next */ in coap_remove_from_queue()
964 p->next->t += q->t; in coap_remove_from_queue()
966 q->next = NULL; in coap_remove_from_queue()
996 context->sendqueue = q->next; in coap_cancel_all_messages()
1005 q = p->next; in coap_cancel_all_messages()
1012 p->next = q->next; in coap_cancel_all_messages()
1015 q = p->next; in coap_cancel_all_messages()
1018 q = q->next; in coap_cancel_all_messages()
1026 queue = queue->next; in coap_find_transaction()