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

/external/chromium/third_party/libjingle/source/talk/base/
H A Dtaskrunner.cc231 int64 next_timeout = next_task_timeout(); local
232 bool timeout_change = (previous_timeout_time == 0 && next_timeout != 0) ||
233 next_timeout < previous_timeout_time ||
235 previous_timeout_time != next_timeout);
/external/openssl/ssl/
H A Dd1_lib.c299 memset(&(s->d1->next_timeout), 0, sizeof(struct timeval));
305 if (s->d1->next_timeout.tv_sec == 0 && s->d1->next_timeout.tv_usec == 0)
311 get_current_time(&(s->d1->next_timeout));
314 s->d1->next_timeout.tv_sec += s->d1->timeout_duration;
315 BIO_ctrl(SSL_get_rbio(s), BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT, 0, &(s->d1->next_timeout));
323 if (s->d1->next_timeout.tv_sec == 0 && s->d1->next_timeout.tv_usec == 0)
332 if (s->d1->next_timeout.tv_sec < timenow.tv_sec ||
333 (s->d1->next_timeout
[all...]
H A Ddtls1.h236 struct timeval next_timeout; member in struct:dtls1_state_st
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_runner2.py57 self.next_timeout = None
87 next_timeout = worker_state.next_timeout
89 if next_timeout and t > next_timeout + WEDGE_PADDING:
205 worker_state.next_timeout = time.time() + hang_timeout
220 worker_state.next_timeout = None
/external/libppp/src/
H A Ddatalink.h79 int next_timeout; /* Redial next timeout value */ member in struct:datalink::__anon8630::__anon8633
H A Ddatalink.c182 datalink_StartDialTimer(dl, dl->cfg.dial.next_timeout);
829 dl->cfg.dial.next_timeout = DIAL_NEXT_TIMEOUT;
1093 if (arg->cx->cfg.dial.next_timeout >= 0)
1094 prompt_Printf(arg->prompt, "%ds/", arg->cx->cfg.dial.next_timeout);
1224 arg->cx->cfg.dial.next_timeout = -1;
1229 arg->cx->cfg.dial.next_timeout = timeout;
1237 arg->cx->cfg.dial.next_timeout = DIAL_NEXT_TIMEOUT;
/external/openssl/include/openssl/
H A Ddtls1.h236 struct timeval next_timeout; member in struct:dtls1_state_st
/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);
/external/openssl/crypto/bio/
H A Dbss_dgram.c156 struct timeval next_timeout; member in struct:bio_dgram_data_st
261 if (data->next_timeout.tv_sec > 0 || data->next_timeout.tv_usec > 0)
286 memcpy(&timeleft, &(data->next_timeout), sizeof(struct timeval));
330 if (data->next_timeout.tv_sec > 0 || data->next_timeout.tv_usec > 0)
711 memcpy(&(data->next_timeout), ptr, sizeof(struct timeval));

Completed in 216 milliseconds