Lines Matching refs:timeout
313 int timeout; in dgram_adjust_rcv_timeout() local
314 int sz = sizeof(timeout); in dgram_adjust_rcv_timeout()
317 (void *)&timeout, &sz) < 0) in dgram_adjust_rcv_timeout()
321 data->socket_timeout = ossl_ms2time(timeout); in dgram_adjust_rcv_timeout()
345 timeout = (int)ossl_time2ms(timeleft); in dgram_adjust_rcv_timeout()
347 (void *)&timeout, sizeof(timeout)) < 0) in dgram_adjust_rcv_timeout()
391 int timeout = (int)ossl_time2ms(data->socket_timeout); in dgram_reset_rcv_timeout() local
394 (void *)&timeout, sizeof(timeout)) < 0) in dgram_reset_rcv_timeout()
787 int timeout = tv->tv_sec * 1000 + tv->tv_usec / 1000; in dgram_ctrl() local
790 (void *)&timeout, sizeof(timeout))) < 0) in dgram_ctrl()
805 int timeout; in dgram_ctrl() local
808 sz = sizeof(timeout); in dgram_ctrl()
810 (void *)&timeout, &sz)) < 0) { in dgram_ctrl()
814 tv->tv_sec = timeout / 1000; in dgram_ctrl()
815 tv->tv_usec = (timeout % 1000) * 1000; in dgram_ctrl()
837 int timeout = tv->tv_sec * 1000 + tv->tv_usec / 1000; in dgram_ctrl() local
840 (void *)&timeout, sizeof(timeout))) < 0) in dgram_ctrl()
855 int timeout; in dgram_ctrl() local
858 sz = sizeof(timeout); in dgram_ctrl()
860 (void *)&timeout, &sz)) < 0) { in dgram_ctrl()
864 tv->tv_sec = timeout / 1000; in dgram_ctrl()
865 tv->tv_usec = (timeout % 1000) * 1000; in dgram_ctrl()