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

  /external/chromium_org/third_party/boringssl/src/ssl/
d1_lib.c 344 OPENSSL_timeval timenow; local
353 get_current_time(&timenow);
356 if (s->d1->next_timeout.tv_sec < timenow.tv_sec ||
357 (s->d1->next_timeout.tv_sec == timenow.tv_sec &&
358 s->d1->next_timeout.tv_usec <= timenow.tv_usec))
366 timeleft->tv_sec -= timenow.tv_sec;
367 timeleft->tv_usec -= timenow.tv_usec;
  /external/openssl/ssl/
d1_lib.c 334 struct timeval timenow; local
343 get_current_time(&timenow);
346 if (s->d1->next_timeout.tv_sec < timenow.tv_sec ||
347 (s->d1->next_timeout.tv_sec == timenow.tv_sec &&
348 s->d1->next_timeout.tv_usec <= timenow.tv_usec))
356 timeleft->tv_sec -= timenow.tv_sec;
357 timeleft->tv_usec -= timenow.tv_usec;
  /external/chromium_org/third_party/webrtc/base/
cpumonitor.cc 166 uint32 timenow = Time(); local
167 int elapsed = static_cast<int>(TimeDiff(timenow, system_.prev_load_time_));
278 system_.prev_load_time_ = timenow;
287 uint32 timenow = Time(); local
288 int elapsed = static_cast<int>(TimeDiff(timenow, process_.prev_load_time_));
362 process_.prev_load_time_ = timenow;
  /external/openssl/crypto/bio/
bss_dgram.c 273 struct timeval timenow, timeleft; local
298 get_current_time(&timenow);
302 timeleft.tv_sec -= timenow.tv_sec;
303 timeleft.tv_usec -= timenow.tv_usec;
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.c 2846 struct timeval timenow, timeout, EventTS, tablecheck = { 0, 0 }; local
    [all...]
  /external/mdnsresponder/mDNSCore/
mDNS.c 679 if ((rr->LastAPTime + rr->ThisAPInterval) - m->timenow > mDNSPlatformOneSecond * 10)
681 LogMsg("SetNextAnnounceProbeTime: ProbeCount %d Next in %d %s", rr->ProbeCount, (rr->LastAPTime + rr->ThisAPInterval) - m->timenow, ARDisplayString(m, rr));
682 LogMsg("SetNextAnnounceProbeTime: m->SuppressProbes %d m->timenow %d diff %d", m->SuppressProbes, m->timenow, m->SuppressProbes - m->timenow);
690 if (m->NextScheduledProbe - m->timenow < 0)
691 m->NextScheduledProbe = m->timenow;
10615 mDNSs32 timenow; local
    [all...]
mDNSEmbeddedAPI.h 1810 mDNSs32 timenow; \/\/ The time that this particular activation of the mDNS code started member in struct:mDNS_struct
    [all...]

Completed in 1079 milliseconds