Lines Matching refs:timeval
69 static void get_current_time(struct timeval *t);
254 if (dtls1_get_timeout(s, (struct timeval*) parg) != NULL) in dtls1_ctrl()
299 memset(&(s->d1->next_timeout), 0, sizeof(struct timeval)); in dtls1_start_timer()
318 struct timeval* dtls1_get_timeout(SSL *s, struct timeval* timeleft) in dtls1_get_timeout()
320 struct timeval timenow; in dtls1_get_timeout()
336 memset(timeleft, 0, sizeof(struct timeval)); in dtls1_get_timeout()
341 memcpy(timeleft, &(s->d1->next_timeout), sizeof(struct timeval)); in dtls1_get_timeout()
356 memset(timeleft, 0, sizeof(struct timeval)); in dtls1_get_timeout()
365 struct timeval timeleft; in dtls1_is_timer_expired()
395 memset(&(s->d1->next_timeout), 0, sizeof(struct timeval)); in dtls1_stop_timer()
453 static void get_current_time(struct timeval *t) in get_current_time()