/freebsd/contrib/ntp/libntp/lib/isc/include/isc/ |
H A D | timer.h | 35 * long, and generate a life timeout event if their lifetime expires. 111 isc_time_t *expires, 123 isc_time_t *expires, isc_interval_t *interval, 171 isc_time_t *expires, 179 * are specified by 'expires' and 'interval'. Events will be posted to 186 * 'interval' seconds. The value of 'expires' is ignored. 188 *\li For once timers, 'expires' specifies the time when a life timeout 189 * event should be generated. If 'expires' is 0 (the epoch), then no life 194 *\li If 'expires' is NULL, the epoch will be used. 206 *\li 'expires' points to a valid time, or is NULL. [all …]
|
/freebsd/contrib/tzdata/ |
H A D | leapseconds.awk | 78 /^#[ \t]*[Uu]pdated through/ || /^#[ \t]*[Ff]ile expires on/ { 83 /^#[@][ \t]/ { expires = $2 } 106 if (expires) { 107 sstamp_to_ymdhMs(expires, ss_NTP) 109 print "# UTC timestamp when this leap second list expires." 112 print "# This Expires line is commented out for now," 119 print "# (No Expires line, since the expires time is unknown.)" 137 if (expires) { 138 sstamp_to_ymdhMs(expires, ss_NTP) 139 printf "#expires %d (%.4d-%.2d-%.2d %.2d:%.2d:%.2d UTC)\n", \ [all …]
|
H A D | leapseconds | 68 # UTC timestamp when this leap second list expires. 70 # This Expires line is commented out for now, 72 #Expires 2025 Dec 28 00:00:00 76 #expires 1766880000 (2025-12-28 00:00:00 UTC) 79 # File expires on 28 December 2025
|
/freebsd/contrib/pam-krb5/tests/pam-util/ |
H A D | options-t.c | 51 krb5_deltat expires; member 53 long expires; member 67 { K(expires), true, TIME (10) }, 152 "expires=1d", in main() 160 "expires=86400", in main() 180 is_int(10, args->config->expires, "...expires default"); in main() 190 is_int(10, args->config->expires, "...expires default"); in main() 209 is_int(86400, args->config->expires, "...expires is set"); in main() 254 is_int(86400, args->config->expires, "...expires is set"); in main() 351 is_int(1800, args->config->expires, "...expires set from krb5.conf"); in main() [all …]
|
/freebsd/sys/contrib/dev/mediatek/mt76/ |
H A D | mcu.c | 33 unsigned long expires) in mt76_mcu_get_response() argument 37 if (!time_is_after_jiffies(expires)) in mt76_mcu_get_response() 40 timeout = expires - jiffies; in mt76_mcu_get_response() 78 unsigned long expires; in mt76_mcu_skb_send_and_get_msg() local 106 expires = jiffies + dev->mcu.timeout; in mt76_mcu_skb_send_and_get_msg() 109 skb = mt76_mcu_get_response(dev, expires); in mt76_mcu_skb_send_and_get_msg()
|
/freebsd/lib/libsys/ |
H A D | timer_settime.2 | 54 expires and the reload value of the timer into the space pointed to by the 60 before the timer expires, or zero if the timer is disarmed. 109 the timer expires in 121 That is, the timer expires when the clock reaches the value specified by the 159 When a timer for which a signal is still pending expires, no signal is
|
H A D | getitimer.2 | 81 when the timer expires. 102 delivered when this timer expires. 111 is delivered when it expires. 122 timer expires, the
|
/freebsd/contrib/ntp/scripts/update-leap/ |
H A D | update-leap.sh | 253 # #@ number : the NTP date that the file expires 264 # Remove comments, except those that are markers for last update, expires and hash 298 EXPIRES="`echo \"$RAW\" | sed -e'/^#@/!d' -e's/^#@//' | tr -d '[:space:]'`" 299 EXPIRES="$(($EXPIRES - 2208988800 ))" 301 if [ $EXPIRES -lt `date -u +%s` ]; then 302 … log "notice" "File expired on `date -u -d \"Jan 1, 1970 00:00:00 +0000 + $EXPIRES seconds\"`" 336 if [ -n "$FORCE" ] || ! verifySHA $LEAPFILE "$VERBOSE" || [ $EXPIRES -lt `date -d "NOW + $PREFETCH"…
|
H A D | update-leap.in | 60 my $EXPIRES; 178 # 4. current file expired or expires soon 181 ( $EXPIRES lt ( $PREFETCH * 86400 + time() ) )) { 316 # #@ number : the NTP date that the file expires 338 # expires and hash 348 $EXPIRES = $_ - 2208988800; 368 if ( $EXPIRES < time() ) { 369 logger(LOG_DEBUG, 'File expired on ' . gmtime($EXPIRES));
|
/freebsd/crypto/krb5/doc/html/_sources/user/ |
H A D | tkt_mgmt.rst.txt | 54 ticket expires. The second is the latest possible expiration time for 186 Valid starting Expires Service principal 194 The "valid starting" and "expires" fields describe the period of time 207 Valid starting Expires Service principal 230 Valid starting Expires Service principal 273 Valid starting Expires Service principal 286 Valid starting Expires Service principal
|
/freebsd/crypto/krb5/doc/user/ |
H A D | tkt_mgmt.rst | 54 ticket expires. The second is the latest possible expiration time for 186 Valid starting Expires Service principal 194 The "valid starting" and "expires" fields describe the period of time 207 Valid starting Expires Service principal 230 Valid starting Expires Service principal 273 Valid starting Expires Service principal 286 Valid starting Expires Service principal
|
/freebsd/contrib/pam-krb5/tests/data/ |
H A D | krb5-pam.conf | 13 expires = 30m 28 expires = ft87
|
H A D | krb5.conf | 13 expires = 30m 28 expires = ft87
|
/freebsd/share/doc/psd/05.sysman/ |
H A D | 1.4.t | 80 when this timer expires. 84 is delivered when it expires. 90 A SIGPROF signal is delivered when it expires.
|
/freebsd/usr.sbin/pw/tests/ |
H A D | pw-modified.conf | 58 # Days after which account expires (0=disabled) 61 # Days after which password expires (0=disabled)
|
H A D | pw.conf | 58 # Days after which account expires (0=disabled) 61 # Days after which password expires (0=disabled)
|
/freebsd/contrib/pam-krb5/tests/tap/ |
H A D | kadmin.c | 67 kerberos_expire_password(const char *principal, time_t expires) in kerberos_expire_password() argument 116 ent.pw_expiration = (krb5_timestamp) expires; in kerberos_expire_password() 134 kerberos_expire_password(const char *principal UNUSED, time_t expires UNUSED) in kerberos_expire_password()
|
/freebsd/contrib/libpcap/ |
H A D | pcap_get_selectable_fd.3pcap | 108 expires before then. To work around this, code that uses 113 and must try to read packets after that timeout expires, regardless of
|
H A D | pcap_breakloop.3pcap | 85 unblocked with the timeout expires. This is not guaranteed to happen 105 This may block until the packet buffer timeout expires, so a non-zero
|
/freebsd/sys/dev/iscsi/ |
H A D | iscsi.h | 85 * expires, kernel will wake up an iscsid(8) to handle 92 * after login_timeout expires, kernel will wake up
|
/freebsd/sys/contrib/vchiq/interface/compat/ |
H A D | vchi_bsd.c | 83 t->expires = 0; in vchiq_init_timer() 99 vchiq_mod_timer(struct timer_list *t, unsigned long expires) in vchiq_mod_timer() argument 102 callout_reset(&t->callout, expires - jiffies, run_timer, t); in vchiq_mod_timer() 109 vchiq_mod_timer(t, t->expires); in vchiq_add_timer()
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_hrtimer.c | 47 nstosbt(hrtimer->expires), nstosbt(hrtimer->precision), 0); in hrtimer_call_handler() 111 hrtimer->expires = ktime_to_ns(time); in linux_hrtimer_set_expires()
|
/freebsd/share/man/man4/ |
H A D | igmp.4 | 95 until the v2 'Old Querier Present' timer expires. 101 until the v1 'Old Querier Present' timer expires.
|
/freebsd/share/doc/smm/06.nfs/ |
H A D | 2.t | 66 but requires that all writes be pushed to the server when the lease expires. 96 expires via. timeout. 179 server network connection is severed just before a write caching lease expires, 180 the client cannot push the dirty writes to the server. After the lease expires
|
/freebsd/crypto/krb5/src/plugins/kdb/db2/ |
H A D | kdb_xdr.c | 136 /* When the client expires */ in krb5_encode_princ_entry() 140 /* When its passwd expires */ in krb5_encode_princ_entry() 275 /* When the client expires */ in krb5_decode_princ_entry() 279 /* When its passwd expires */ in krb5_decode_princ_entry()
|