HomeSort by relevance Sort by last modified time
    Searched refs:next_timeout (Results 1 - 7 of 7) sorted by null

  /external/openssl/ssl/
d1_lib.c 299 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.tv_sec == timenow.tv_sec &
    [all...]
dtls1.h 236 struct timeval next_timeout; member in struct:dtls1_state_st
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_runner2.py 57 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/chromium/third_party/libjingle/source/talk/base/
taskrunner.cc 231 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/include/openssl/
dtls1.h 236 struct timeval next_timeout; member in struct:dtls1_state_st
  /external/libusb/libusb/
io.c 2092 struct timeval *next_timeout; local
    [all...]
  /external/openssl/crypto/bio/
bss_dgram.c 156 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));
    [all...]

Completed in 2509 milliseconds