HomeSort by: relevance | last modified time | path
    Searched defs:timenow (Results 1 - 21 of 21) sorted by relevancy

  /src/usr.sbin/mopd/common/
put.c 80 struct tm *timenow; local
88 timenow = localtime(&tnow);
91 mopPutChar (pkt,idx,(timenow->tm_year / 100) + 19);
92 mopPutChar (pkt,idx,(timenow->tm_year % 100));
93 mopPutChar (pkt,idx,(timenow->tm_mon + 1));
94 mopPutChar (pkt,idx,(timenow->tm_mday));
95 mopPutChar (pkt,idx,(timenow->tm_hour));
96 mopPutChar (pkt,idx,(timenow->tm_min));
97 mopPutChar (pkt,idx,(timenow->tm_sec));
  /src/external/bsd/unbound/dist/testcode/
unitecs.c 166 time_t timenow = 0; local
176 addrtree_insert(t, k, l, 64, elem, timenow + 10, timenow, 0);
unitmsgparse.c 167 uint16_t flags, sldns_buffer* out, time_t timenow,
181 ret = reply_info_encode(qi, rep, id, flags, out, timenow,
208 time_t timenow = 0; local
227 perf_encode(&qi, rep, id, flags, out, timenow, &edns);
322 uint32_t timenow = 0; local
344 ret = reply_info_encode(&qi, rep, id, flags, out, timenow,
358 timenow, region,
fake_event.c 246 int timenow = runtime->now->time_step; local
249 if(p->start_step <= timenow && timenow <= p->end_step &&
255 "with entry line %d", timenow,
  /src/crypto/external/apache2/openssl/dist/ssl/
d1_lib.c 312 OSSL_TIME timenow; local
319 timenow = ossl_time_now();
326 *timeleft = ossl_time_subtract(s->d1->next_timeout, timenow);
  /src/crypto/external/bsd/openssl/dist/crypto/bio/
bss_dgram.c 201 struct timeval timenow, timeleft; local
225 get_current_time(&timenow);
229 if (timeleft.tv_usec < timenow.tv_usec) {
230 timeleft.tv_usec = 1000000 - timenow.tv_usec + timeleft.tv_usec;
233 timeleft.tv_usec -= timenow.tv_usec;
235 if (timeleft.tv_sec < timenow.tv_sec) {
239 timeleft.tv_sec -= timenow.tv_sec;
  /src/crypto/external/bsd/openssl/dist/ssl/
d1_lib.c 306 struct timeval timenow; local
314 get_current_time(&timenow);
317 if (s->d1->next_timeout.tv_sec < timenow.tv_sec ||
318 (s->d1->next_timeout.tv_sec == timenow.tv_sec &&
319 s->d1->next_timeout.tv_usec <= timenow.tv_usec)) {
326 timeleft->tv_sec -= timenow.tv_sec;
327 timeleft->tv_usec -= timenow.tv_usec;
  /src/crypto/external/bsd/openssl.old/dist/crypto/bio/
bss_dgram.c 209 struct timeval timenow, timeleft; local
233 get_current_time(&timenow);
237 if (timeleft.tv_usec < timenow.tv_usec) {
238 timeleft.tv_usec = 1000000 - timenow.tv_usec + timeleft.tv_usec;
241 timeleft.tv_usec -= timenow.tv_usec;
243 if (timeleft.tv_sec < timenow.tv_sec) {
247 timeleft.tv_sec -= timenow.tv_sec;
  /src/crypto/external/bsd/openssl.old/dist/ssl/
d1_lib.c 289 struct timeval timenow; local
297 get_current_time(&timenow);
300 if (s->d1->next_timeout.tv_sec < timenow.tv_sec ||
301 (s->d1->next_timeout.tv_sec == timenow.tv_sec &&
302 s->d1->next_timeout.tv_usec <= timenow.tv_usec)) {
309 timeleft->tv_sec -= timenow.tv_sec;
310 timeleft->tv_usec -= timenow.tv_usec;
  /src/crypto/external/bsd/heimdal/dist/lib/hx509/
hx_locl.h 163 time_t timenow; member in struct:hx509_query_data
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
send_to_kdc.c 935 time_t timenow; member in struct:wait_ctx
945 if (h->timeout >= wait_ctx->timenow)
955 if (h->timeout < wait_ctx->timenow) {
1045 wait_ctx.timenow = time(NULL);
  /src/external/bsd/unbound/dist/daemon/
worker.c 567 time_t timenow = *worker->env.now; local
576 worker->scratchpad, &msg, timenow, 0, NULL, 0);
739 time_t timenow = *worker->env.now; local
749 if(rep->ttl < timenow) {
757 timenow < rep->serve_expired_norec_ttl)
763 if(!reply_info_can_answer_expired(rep, timenow))
776 if(!rrset_array_lock(rep->ref, rep->rrset_count, timenow))
892 repinfo->c->buffer, timenow, 1, worker->scratchpad,
  /src/external/bsd/unbound/dist/services/
mesh.c 340 time_t timenow = *qstate->env->now; local
351 if(data->ttl < timenow) *is_expired = 1;
352 msg = tomsg(qstate->env, &key->key, data, qstate->region, timenow,
outside_network.c 3437 time_t timenow = 0; local
3481 timenow = *env->now;
3483 zonelen, timenow, env->cfg->ratelimit_backoff,
3513 zone, zonelen, timenow);
3521 zone, zonelen, timenow);
  /src/external/bsd/ppp/dist/pppd/
main.c 1409 static struct timeval timenow; /* Current time */ variable in typeref:struct:timeval
1426 ppp_get_time(&timenow);
1427 newp->c_time.tv_sec = timenow.tv_sec + secs;
1428 newp->c_time.tv_usec = timenow.tv_usec + usecs;
1478 if (ppp_get_time(&timenow) < 0)
1480 if (!(p->c_time.tv_sec < timenow.tv_sec
1481 || (p->c_time.tv_sec == timenow.tv_sec
1482 && p->c_time.tv_usec <= timenow.tv_usec)))
1502 ppp_get_time(&timenow);
1503 tvp->tv_sec = callout->c_time.tv_sec - timenow.tv_sec
    [all...]
  /src/external/mpl/bind/dist/lib/dns/
adb.c 1266 isc_time_t timenow; local
1276 isc_time_set(&timenow, now, 0);
1357 isc_time_t timenow; local
1363 isc_time_set(&timenow, now, 0);
zone.c 4196 isc_time_t timenow, timethen; local
4211 timenow = isc_time_now();
4213 DNS_ZONE_TIME_ADD(&timenow, then - now, &timethen);
4215 timethen = timenow;
4217 if (isc_time_compare(&zone->refreshkeytime, &timenow) < 0 ||
4225 zone_settimer(zone, &timenow);
5402 isc_stdtime_t timenow = isc_stdtime_now(); local
5415 resign - timenow -
11022 isc_time_t timenow, timethen; local
11046 timenow = isc_time_now()
17045 isc_time_t timenow; local
21148 isc_time_t timenow; local
22414 isc_time_t timenow; local
    [all...]
  /src/external/mpl/bind/dist/lib/isccfg/
check.c 3105 isc_time_t timenow; local
3108 timenow = isc_time_now();
3109 now = isc_time_seconds(&timenow);
  /src/external/mpl/bind/dist/bin/named/
server.c 15225 isc_time_t timenow, timewhen; local
15244 timenow = isc_time_now();
15245 now = isc_time_seconds(&timenow);
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
mDNSEmbeddedAPI.h 1215 // if m->timenow < ExpiryTime then we have an active mapping, and we'll renew halfway to expiry
1216 // if m->timenow >= ExpiryTime then our mapping has expired, and we're trying to create one
2375 mDNSs32 timenow; // The time that this particular activation of the mDNS code started member in struct:mDNS_struct
3240 // Code that's protected by the main mDNS lock should just use the m->timenow value
  /src/external/mpl/dhcp/bind/dist/lib/dns/
zone.c 4116 isc_time_t timenow, timethen; local
4131 TIME_NOW(&timenow);
4133 DNS_ZONE_TIME_ADD(&timenow, then - now, &timethen);
4135 timethen = timenow;
4137 if (isc_time_compare(&zone->refreshkeytime, &timenow) < 0 ||
4145 zone_settimer(zone, &timenow);
5304 isc_stdtime_t timenow; local
5308 isc_stdtime_get(&timenow);
5317 next.resign - timenow -
11058 isc_time_t timenow, timethen local
16508 isc_time_t timenow; local
20801 isc_time_t timenow; local
21423 isc_time_t timenow; local
    [all...]

Completed in 198 milliseconds