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

  /external/ltp/testcases/kernel/timers/timer_settime/
timer_settime02.c 122 struct timespec timenow; /* Used to obtain current time */ local
163 if (clock_gettime(CLOCK_REALTIME, &timenow) < 0) {
168 new_set.it_value.tv_sec = timenow.tv_sec + 25;
  /external/boringssl/src/ssl/
d1_lib.cc 207 struct OPENSSL_timeval timenow; local
208 ssl_get_current_time(ssl, &timenow);
211 if (ssl->d1->next_timeout.tv_sec < timenow.tv_sec ||
212 (ssl->d1->next_timeout.tv_sec == timenow.tv_sec &&
213 ssl->d1->next_timeout.tv_usec <= timenow.tv_usec)) {
221 ret.tv_sec -= timenow.tv_sec;
222 if (ret.tv_usec >= timenow.tv_usec) {
223 ret.tv_usec -= timenow.tv_usec;
225 ret.tv_usec = 1000000 + ret.tv_usec - timenow.tv_usec;
  /external/mdnsresponder/mDNSShared/
dnsextd.c 2846 struct timeval timenow, timeout, EventTS, tablecheck = { 0, 0 }; local
    [all...]
  /external/ppp/pppd/
main.c 1312 static struct timeval timenow; \/* Current time *\/ variable in typeref:struct:timeval
    [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 1821 mDNSs32 timenow; \/\/ The time that this particular activation of the mDNS code started member in struct:mDNS_struct
    [all...]

Completed in 946 milliseconds