Lines Matching refs:tid
183 coap_tid_t tid = COAP_INVALID_TID; in clear_obs() local
193 return tid; in clear_obs()
243 tid = coap_send_confirmed(ctx, local_interface, remote, pdu); in clear_obs()
245 tid = coap_send(ctx, local_interface, remote, pdu); in clear_obs()
247 if (tid == COAP_INVALID_TID) { in clear_obs()
253 return tid; in clear_obs()
257 return tid; in clear_obs()
329 coap_tid_t tid; in message_handler() local
409 tid = coap_send_confirmed(ctx, local_interface, remote, pdu); in message_handler()
411 tid = coap_send(ctx, local_interface, remote, pdu); in message_handler()
413 if (tid == COAP_INVALID_TID) { in message_handler()
482 tid = coap_send_confirmed(ctx, local_interface, remote, pdu); in message_handler()
484 tid = coap_send(ctx, local_interface, remote, pdu); in message_handler()
486 if (tid == COAP_INVALID_TID) { in message_handler()
1041 coap_tid_t tid = COAP_INVALID_TID; in main() local
1199 tid = coap_send_confirmed(ctx, ctx->endpoint, &dst, pdu); in main()
1201 tid = coap_send(ctx, ctx->endpoint, &dst, pdu); in main()
1203 if (pdu->hdr->type != COAP_MESSAGE_CON || tid == COAP_INVALID_TID) in main()