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

/macosx-10.10/apr-32/apr-util/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...]
/macosx-10.10/postfix-255/postfix/src/tls/
H A Dtls_bio_ops.c164 struct timeval time_now; /* time after SSL_mumble() call */ local
240 GETTIMEOFDAY(&time_now);
241 timersub(&time_deadline, &time_now, &time_left);
/macosx-10.10/CPANInternal-159.1/Data-UUID-1.219/
H A DUUID.xs88 perl_uuid_time_t time_now;
99 get_system_time(&time_now);
101 if (time_last != time_now) {
103 time_last = time_now;
111 *timestamp = time_now + uuids_this_tick;
116 perl_uuid_time_t time_now;
119 get_system_time(&time_now);
120 time_now = time_now/UUIDS_PER_TICK;
121 srand((unsigned int)(((time_now >> 3
[all...]
/macosx-10.10/NFS-82/rpc.lockd/
H A Dlock_proc.c238 struct timeval retry_time, time_now; local
251 gettimeofday(&time_now, NULL);
269 if (((clnt_cache_time[i] + cache_ttl) > time_now.tv_sec)) {
293 if ((badhost->timelast + BADHOST_MAXIMUM_DELAY) < time_now.tv_sec) {
305 if (badhost && client_request && ((time_now.tv_sec - badhost->timelast) >= BADHOST_NFS_CLIENT_SIDE_DELAY))
306 badhost->timenext = time_now.tv_sec;
307 if (badhost && (time_now.tv_sec < badhost->timenext)) {
343 time_start = time_now.tv_sec;
357 gettimeofday(&time_now, NULL);
358 if (time_now
[all...]
/macosx-10.10/autofs-246/automountd/
H A Dnfs_cast.c653 struct timeval time_now; local
655 (void) gettimeofday(&time_now, (struct timezone *)0);
656 if (time_now.tv_usec < send_time->tv_usec) {
657 time_now.tv_sec--;
658 time_now.tv_usec += 1000000;
660 send_time->tv_sec = time_now.tv_sec - send_time->tv_sec;
661 send_time->tv_usec = time_now.tv_usec - send_time->tv_usec;
/macosx-10.10/bind9-45.101/bind9/contrib/queryperf/
H A Dqueryperf.c1037 struct timeval time_now; local
1039 set_timenow(&time_now);
1045 if (difftv(time_now, time_of_program_start)
1051 if (difftv(time_now, time_of_first_query)
1994 struct timeval time_now; local
2008 set_timenow(&time_now);
2009 if (difftv(time_now, time_of_first_query_interval)
2019 &time_of_first_query_interval, &time_now, &time_now,
/macosx-10.10/OpenSSH-189/openssh/
H A Dmoduli.c159 time_t time_now; local
162 time(&time_now);
163 gtm = gmtime(&time_now);
/macosx-10.10/configd-699.1.5/Plugins/IPMonitor/
H A Dsmb-configuration.c715 CFAbsoluteTime time_now ; local
732 time_now = CFAbsoluteTimeGetCurrent() + SMB_DEBOUNCE_DELAY;
735 time_now > time_boot ? time_now : time_boot,
/macosx-10.10/Heimdal-398.1.2/lib/hx509/
H A Dcert.c64 time_t time_now; member in struct:hx509_verify_ctx_data
492 ctx->time_now = t;
498 return ctx->time_now;
1052 time_t time_now,
1095 q.timenow = time_now;
1238 time_t time_now,
1259 ret = find_parent(context, time_now, anchors, path,
2053 ctx->time_now = time(NULL);
2072 ret = _hx509_calculate_path(context, 0, ctx->time_now,
2279 if (t > ctx->time_now) {
1051 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
1236 _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,
424 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.c163 time_t time_now,
455 time_t time_now,
465 if (t > time_now) {
478 if (t < time_now) {
541 time_now,
161 verify_ocsp(hx509_context context, struct revoke_ocsp *ocsp, time_t time_now, hx509_certs certs, hx509_cert parent) argument
452 verify_crl(hx509_context context, hx509_revoke_ctx ctx, CRLCertificateList *crl, time_t time_now, hx509_certs certs, hx509_cert parent) argument
H A Dhx509-private.h51 time_t time_now,
H A Dhx509-protos.h1420 * @param time_now set the current time, if zero the library uses now as the date.
1435 time_t time_now,
/macosx-10.10/vim-55/src/
H A Dos_riscos.c355 int start_time, time_now; local
364 time_now = r0;
365 if (time_now - start_time > csec)
/macosx-10.10/Security-57031.1.35/Security/include/security_smime/
H A DtsaSupport.c86 struct timeval time_now; \
87 gettimeofday(&time_now, NULL); \
88 struct tm* time_info = localtime(&time_now.tv_sec); \
/macosx-10.10/Security-57031.1.35/Security/libsecurity_smime/lib/
H A DtsaSupport.c86 struct timeval time_now; \
87 gettimeofday(&time_now, NULL); \
88 struct tm* time_info = localtime(&time_now.tv_sec); \

Completed in 476 milliseconds