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

  /external/boringssl/src/ssl/
d1_lib.cc 122 if (ssl->d1->next_timeout.tv_sec == 0 && ssl->d1->next_timeout.tv_usec == 0) {
127 ssl_get_current_time(ssl, &ssl->d1->next_timeout);
130 ssl->d1->next_timeout.tv_sec += ssl->d1->timeout_duration_ms / 1000;
131 ssl->d1->next_timeout.tv_usec += (ssl->d1->timeout_duration_ms % 1000) * 1000;
132 if (ssl->d1->next_timeout.tv_usec >= 1000000) {
133 ssl->d1->next_timeout.tv_sec++;
134 ssl->d1->next_timeout.tv_usec -= 1000000;
164 OPENSSL_memset(&ssl->d1->next_timeout, 0, sizeof(ssl->d1->next_timeout));
    [all...]
internal.h 2492 struct OPENSSL_timeval next_timeout = {0, 0}; member in struct:bssl::DTLS1_STATE
    [all...]
  /external/syslinux/core/lwip/src/core/
timers.c 62 static struct sys_timeo *next_timeout; variable in typeref:struct:sys_timeo
285 if (next_timeout == NULL) {
286 next_timeout = timeout;
290 if (next_timeout->time > msecs) {
291 next_timeout->time -= msecs;
292 timeout->next = next_timeout;
293 next_timeout = timeout;
295 for(t = next_timeout; t != NULL; t = t->next) {
324 if (next_timeout == NULL) {
328 for (t = next_timeout, prev_t = NULL; t != NULL; prev_t = t, t = t->next)
    [all...]
  /external/webrtc/webrtc/base/
taskrunner.cc 214 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/libusb/libusb/
io.c 2553 struct timeval next_timeout = { 0, 0 }; local
    [all...]
  /external/scapy/scapy/
automaton.py 801 next_timeout,timeout_func = next(expirations)
    [all...]

Completed in 472 milliseconds