Lines Matching defs:s_timeout
1363 coap_tick_t s_timeout;
1440 s_timeout = (s->last_rx_tx + session_timeout) - now;
1441 if (timeout == 0 || s_timeout < timeout)
1442 timeout = s_timeout;
1468 if (coap_block_check_lg_srcv_timeouts(s, now, &s_timeout)) {
1469 if (timeout == 0 || s_timeout < timeout)
1470 timeout = s_timeout;
1475 if (coap_block_check_lg_xmit_timeouts(s, now, &s_timeout)) {
1476 if (timeout == 0 || s_timeout < timeout)
1477 timeout = s_timeout;
1492 s_timeout = coap_block_check_q_block2_xmit(s, now);
1493 if (timeout == 0 || s_timeout < timeout)
1494 timeout = s_timeout;
1519 s_timeout = (s->last_rx_tx + ctx->ping_timeout * COAP_TICKS_PER_SECOND) - now;
1520 if (timeout == 0 || s_timeout < timeout)
1521 timeout = s_timeout;
1536 s_timeout = (s->csm_tx + ctx->csm_timeout * COAP_TICKS_PER_SECOND) - now;
1537 if (timeout == 0 || s_timeout < timeout)
1538 timeout = s_timeout;
1566 if (coap_block_check_lg_crcv_timeouts(s, now, &s_timeout)) {
1567 if (timeout == 0 || s_timeout < timeout)
1568 timeout = s_timeout;
1573 if (coap_block_check_lg_xmit_timeouts(s, now, &s_timeout)) {
1574 if (timeout == 0 || s_timeout < timeout)
1575 timeout = s_timeout;
1584 s_timeout = coap_block_check_q_block1_xmit(s, now);
1585 if (timeout == 0 || s_timeout < timeout)
1586 timeout = s_timeout;