Searched refs:next_timeout (Results 1 - 6 of 6) sorted by relevance

/external/boringssl/src/ssl/
H A Dd1_lib.c163 if (ssl->d1->next_timeout.tv_sec == 0 && ssl->d1->next_timeout.tv_usec == 0) {
168 get_current_time(ssl, &ssl->d1->next_timeout);
171 ssl->d1->next_timeout.tv_sec += ssl->d1->timeout_duration;
173 &ssl->d1->next_timeout);
182 if (ssl->d1->next_timeout.tv_sec == 0 && ssl->d1->next_timeout.tv_usec == 0) {
191 if (ssl->d1->next_timeout.tv_sec < timenow.tv_sec ||
192 (ssl->d1->next_timeout.tv_sec == timenow.tv_sec &&
193 ssl->d1->next_timeout
[all...]
H A Dinternal.h962 struct timeval next_timeout; member in struct:dtls1_state_st
/external/webrtc/webrtc/base/
H A Dtaskrunner.cc214 int64_t next_timeout = next_task_timeout(); local
215 bool timeout_change = (previous_timeout_time == 0 && next_timeout != 0) ||
216 next_timeout < previous_timeout_time ||
218 previous_timeout_time != next_timeout);
/external/avahi/avahi-glib/
H A Dglib-watch.c257 AvahiTimeout *next_timeout; local
268 if ((next_timeout = find_next_timeout(g))) {
277 usec = avahi_timeval_diff(&next_timeout->expiry, &tvnow);
294 AvahiTimeout *next_timeout; local
298 if ((next_timeout = find_next_timeout(g))) {
305 if (avahi_timeval_compare(&next_timeout->expiry, &tvnow) <= 0)
319 AvahiTimeout *next_timeout; local
323 if ((next_timeout = find_next_timeout(g))) {
330 if (avahi_timeval_compare(&next_timeout->expiry, &tvnow) < 0) {
331 start_timeout_callback(next_timeout);
[all...]
/external/avahi/avahi-common/
H A Dsimple-watch.c451 AvahiTimeout *next_timeout; local
481 if ((next_timeout = find_next_timeout(s))) {
486 if (next_timeout->expiry.tv_sec == 0 &&
487 next_timeout->expiry.tv_usec == 0) {
495 usec = avahi_timeval_diff(&next_timeout->expiry, &now);
548 AvahiTimeout *next_timeout; local
558 if ((next_timeout = find_next_timeout(s))) {
560 if (next_timeout->expiry.tv_sec == 0 && next_timeout->expiry.tv_usec == 0) {
563 timeout_callback(next_timeout);
[all...]
/external/libusb/libusb/
H A Dio.c2092 struct timeval *next_timeout; local
2121 next_timeout = &transfer->timeout;
2124 if (!timerisset(next_timeout)) {
2136 if (timercmp(&cur_tv, next_timeout, >=)) {
2140 timersub(next_timeout, &cur_tv, tv);

Completed in 1033 milliseconds