Lines Matching refs:pending

84 	request->pending.timeout = 0;  in release_internal_request()
108 if (internal_req->pending.t0 == 0) { in exchange_lifetime_exceeded()
112 time_since_t0 = k_uptime_get() - internal_req->pending.t0; in exchange_lifetime_exceeded()
114 (internal_req->pending.params.ack_timeout * COAP_EXCHANGE_LIFETIME_FACTOR); in exchange_lifetime_exceeded()
423 ret = coap_pending_init(&internal_req->pending, &internal_req->request, in coap_client_req()
435 internal_req->pending.retries = 0; in coap_client_req()
437 coap_pending_cycle(&internal_req->pending); in coap_client_req()
475 if (internal_req->pending.timeout == 0) { in timeout_expired()
480 internal_req->pending.timeout <= (k_uptime_get() - internal_req->pending.t0)); in timeout_expired()
489 struct coap_pending tmp = internal_req->pending; in resend_request()
492 internal_req->pending.timeout != 0 && in resend_request()
493 coap_pending_cycle(&internal_req->pending)) { in resend_request()
514 internal_req->pending = tmp; in resend_request()
812 internal_req->pending.t0 = k_uptime_get(); in handle_response()
813 internal_req->pending.timeout = COAP_SEPARATE_TIMEOUT; in handle_response()
814 internal_req->pending.retries = 0; in handle_response()
847 internal_req->pending.params; in handle_response()
848 ret = coap_pending_init(&internal_req->pending, in handle_response()
856 coap_pending_cycle(&internal_req->pending); in handle_response()
900 if (internal_req->pending.timeout != 0) { in handle_response()
901 coap_pending_clear(&internal_req->pending); in handle_response()
974 struct coap_transmission_parameters params = internal_req->pending.params; in handle_response()
975 ret = coap_pending_init(&internal_req->pending, &internal_req->request, in handle_response()
981 coap_pending_cycle(&internal_req->pending); in handle_response()