Searched defs:epoch (Results 1 - 5 of 5) sorted by relevance
/bind-9.11.3/lib/dns/tests/ |
H A D | time_test.c | 58 ATF_TC(epoch); variable 59 ATF_TC_HEAD(epoch, tc) { 62 ATF_TC_BODY(epoch, tc) { 202 ATF_TP_ADD_TC(tp, epoch);
|
/bind-9.11.3/bin/tests/virtual-time/ |
H A D | vtwrapper.c | 36 static struct timeval epoch = { 0, 0 }; variable in typeref:struct:timeval 41 (void)syscall(SYS_gettimeofday, &epoch, NULL); 53 if ((epoch.tv_sec > vt->tv_sec) || 54 ((epoch.tv_sec == vt->tv_sec) && (epoch.tv_usec > vt->tv_usec))) 57 rt->tv_sec -= epoch.tv_sec; 58 rt->tv_usec -= epoch.tv_usec; 75 rt->tv_sec += epoch.tv_sec; 76 rt->tv_usec += epoch.tv_usec; 91 if ((epoch [all...] |
/bind-9.11.3/lib/isc/unix/ |
H A D | time.c | 108 static const isc_time_t epoch = { 0, 0 }; variable 109 const isc_time_t * const isc_time_epoch = &epoch;
|
/bind-9.11.3/lib/isc/win32/ |
H A D | time.c | 43 static const isc_time_t epoch = { { 0, 0 } }; variable 44 LIBISC_EXTERNAL_DATA const isc_time_t * const isc_time_epoch = &epoch;
|
/bind-9.11.3/bin/dnssec/ |
H A D | dnssec-settime.c | 93 fprintf(stderr, " -u: print times in unix epoch " 103 printtime(dst_key_t *key, int type, const char *tag, isc_boolean_t epoch, argument 116 } else if (epoch) { 163 isc_boolean_t epoch = ISC_FALSE; local 251 epoch = ISC_TRUE; 615 printtime(key, DST_TIME_CREATED, "Created", epoch, stdout); 618 printtime(key, DST_TIME_PUBLISH, "Publish", epoch, stdout); 621 printtime(key, DST_TIME_ACTIVATE, "Activate", epoch, stdout); 624 printtime(key, DST_TIME_REVOKE, "Revoke", epoch, stdout); 627 printtime(key, DST_TIME_INACTIVE, "Inactive", epoch, stdou [all...] |
Completed in 32 milliseconds