HomeSort by relevance Sort by last modified time
    Searched refs:next_timeout (Results 1 - 10 of 10) 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 240 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/libppp/src/
datalink.h 79 int next_timeout; /* Redial next timeout value */ member in struct:datalink::__anon10751::__anon10754
datalink.c 182 datalink_StartDialTimer(dl, dl->cfg.dial.next_timeout);
829 dl->cfg.dial.next_timeout = DIAL_NEXT_TIMEOUT;
    [all...]
  /external/openssl/include/openssl/
dtls1.h 240 struct timeval next_timeout; member in struct:dtls1_state_st
  /external/libusb/libusb/
io.c 2092 struct timeval *next_timeout; local
    [all...]
  /external/libusb_aah/libusb/
io.c 2315 struct timeval *next_timeout; local
    [all...]
  /external/openssl/crypto/bio/
bss_dgram.c 166 struct timeval next_timeout; member in struct:bio_dgram_data_st
271 if (data->next_timeout.tv_sec > 0 || data->next_timeout.tv_usec > 0)
301 memcpy(&timeleft, &(data->next_timeout), sizeof(struct timeval));
345 if (data->next_timeout.tv_sec > 0 || data->next_timeout.tv_usec > 0)
724 memcpy(&(data->next_timeout), ptr, sizeof(struct timeval));
    [all...]

Completed in 166 milliseconds