Searched refs:time_now (Results 1 - 11 of 11) sorted by relevance

/freebsd-10.1-release/contrib/apr-util/crypto/
H A Dgetuuid.c122 apr_uint64_t time_now; local
134 time_now = apr_time_now();
135 srand((unsigned int)(((time_now >> 32) ^ time_now) & 0xffffffff));
150 apr_uint64_t time_now; local
154 get_system_time(&time_now);
157 if (time_last != time_now) {
161 if (time_last + fudge > time_now)
162 fudge = time_last + fudge - time_now + 1;
165 time_last = time_now;
[all...]
/freebsd-10.1-release/contrib/gdb/gdb/
H A Devent-loop.c973 struct timeval time_now, delta;
980 gettimeofday (&time_now, NULL);
983 timer_ptr->when.tv_sec = time_now.tv_sec + delta.tv_sec;
984 timer_ptr->when.tv_usec = time_now.tv_usec + delta.tv_usec;
1073 struct timeval time_now;
1076 gettimeofday (&time_now, NULL);
1081 if ((timer_ptr->when.tv_sec > time_now.tv_sec) ||
1082 ((timer_ptr->when.tv_sec == time_now.tv_sec) &&
1083 (timer_ptr->when.tv_usec > time_now.tv_usec)))
1107 struct timeval time_now, delt
970 struct timeval time_now, delta; local
1070 struct timeval time_now; local
1104 struct timeval time_now, delta; local
[all...]
/freebsd-10.1-release/contrib/ntp/libntp/
H A Dntp_intres.c323 time_t time_now; local
379 time_now = time(NULL);
380 worker_ctx->ignore_scheduled_before = time_now;
382 humantime(time_now)));
490 time_t time_now; local
513 time_now = time(NULL);
514 child_ctx->next_dns_timeslot = time_now;
516 gai_req->dns_idx, humantime(time_now)));
653 time_t time_now; local
665 time_now
708 time_t time_now; local
819 time_t time_now; local
902 time_t time_now; local
[all...]
/freebsd-10.1-release/crypto/openssh/
H A Dmoduli.c155 time_t time_now; local
158 time(&time_now);
159 gtm = gmtime(&time_now);
530 time_t time_now, elapsed; local
535 time_now = monotime();
537 time_start = time_prev = time_now;
541 if (time_now - time_prev < 5 * 60)
543 time_prev = time_now;
544 elapsed = time_now - time_start;
550 time(&time_now);
[all...]
/freebsd-10.1-release/contrib/gdb/gdb/mi/
H A Dmi-main.c1417 struct timeval time_now, delta, update_threshold; local
1428 gettimeofday (&time_now, NULL);
1430 delta.tv_usec = time_now.tv_usec - last_update.tv_usec;
1431 delta.tv_sec = time_now.tv_sec - last_update.tv_sec;
1464 last_update.tv_sec = time_now.tv_sec;
1465 last_update.tv_usec = time_now.tv_usec;
/freebsd-10.1-release/crypto/heimdal/lib/hx509/
H A Dcert.c62 time_t time_now; member in struct:hx509_verify_ctx_data
489 ctx->time_now = t;
495 return ctx->time_now;
1051 time_t time_now,
1094 q.timenow = time_now;
1237 time_t time_now,
1258 ret = find_parent(context, time_now, anchors, path,
1996 ctx->time_now = time(NULL);
2015 ret = _hx509_calculate_path(context, 0, ctx->time_now,
2222 if (t > ctx->time_now) {
1050 find_parent(hx509_context context, time_t time_now, hx509_certs trust_anchors, hx509_path *path, hx509_certs pool, hx509_cert current, hx509_cert *parent) argument
1235 _hx509_calculate_path(hx509_context context, int flags, time_t time_now, hx509_certs anchors, unsigned int max_depth, hx509_cert cert, hx509_certs pool, hx509_path *path) argument
[all...]
H A Dcms.c262 time_t time_now,
295 if (time_now)
296 q.timenow = time_now;
339 * @param time_now set the current time, if zero the library uses now as the date.
353 time_t time_now,
417 time_now, &cert,
259 find_CMSIdentifier(hx509_context context, CMSIdentifier *client, hx509_certs certs, time_t time_now, hx509_cert *signer_cert, int match) argument
347 hx509_cms_unenvelope(hx509_context context, hx509_certs certs, int flags, const void *data, size_t length, const heim_octet_string *encryptedContent, time_t time_now, heim_oid *contentType, heim_octet_string *content) argument
H A Drevoke.c172 time_t time_now,
458 time_t time_now,
468 if (t > time_now) {
481 if (t < time_now) {
544 time_now,
170 verify_ocsp(hx509_context context, struct revoke_ocsp *ocsp, time_t time_now, hx509_certs certs, hx509_cert parent) argument
455 verify_crl(hx509_context context, hx509_revoke_ctx ctx, CRLCertificateList *crl, time_t time_now, hx509_certs certs, hx509_cert parent) argument
/freebsd-10.1-release/usr.sbin/rpc.lockd/
H A Dlock_proc.c198 struct timeval retry_time, time_now; local
206 gettimeofday(&time_now, NULL);
215 < time_now.tv_sec)) {
302 clnt_cache_time[clnt_cache_next_to_use] = time_now.tv_sec;
/freebsd-10.1-release/usr.sbin/rpcbind/
H A Drpcb_svc_com.c936 time_t min_time, time_now; local
941 time_now = time((time_t *)0);
944 lastxid = time_now * NFORWARD;
962 if ((time_now - FINFO[i].time) > MAXTIME_OFF)
988 FINFO[j].time = time_now;
/freebsd-10.1-release/contrib/wpa/src/p2p/
H A Dp2p.c605 struct os_time time_now, time_tmp_age, entry_ts; local
642 os_get_time(&time_now);
645 os_time_sub(&time_now, &time_tmp_age, &entry_ts);

Completed in 187 milliseconds