Searched refs:seconds (Results 151 - 175 of 231) sorted by relevance

12345678910

/freebsd-current/stand/i386/libi386/
H A Dpxe.h468 uint16_t seconds; /* seconds since did initial bootstrap */ member in struct:__anon837
469 uint16_t Flags; /* seconds since did initial bootstrap */
/freebsd-current/include/rpcsvc/
H A Dnfs_prot.x102 unsigned seconds;
383 uint32 seconds;
/freebsd-current/contrib/llvm-project/lldb/source/Host/posix/
H A DPipePosix.cpp346 select_helper.SetTimeout(std::chrono::seconds(0));
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DThreadedCommunication.cpp278 buf, sizeof(buf), std::chrono::seconds(5), status, &error);
/freebsd-current/share/mk/
H A Dmeta.autodep.mk324 @echo "${TIME_STAMP} Finished ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}"
330 @echo "${TIME_STAMP} Failed ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}"
/freebsd-current/contrib/bmake/mk/
H A Dmeta.autodep.mk324 @echo "${TIME_STAMP} Finished ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}"
330 @echo "${TIME_STAMP} Failed ${RELDIR}.${TARGET_SPEC} seconds=$$(( ${now_utc} - ${start_utc} )) ${meta_stats}"
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunication.cpp1039 // Wait for 10 seconds to resolve the bound port
1041 uint16_t port_ = port_future.wait_for(std::chrono::seconds(10)) ==
1154 port_cstr, num_bytes, std::chrono::seconds{10}, num_bytes);
1243 GDBRemoteCommunication &gdb_comm, std::chrono::seconds timeout)
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp87 nullptr, std::chrono::seconds(10));
112 std::chrono::seconds(10));
178 std::chrono::seconds(10));
/freebsd-current/contrib/ntp/sntp/
H A Dmain.c648 TRACE(2, ("xmt_timer_cb: at .%6.6u next %ld seconds\n",
798 msyslog(LOG_INFO, "%s no %cCST response after %d seconds",
1045 * timeout to fire in s seconds, if not reset earlier by a call to
1054 u_int seconds /* 0 cancels */
1067 if (0 == seconds)
1069 tv_to.tv_sec = seconds;
1223 ** expiration timestamp of several seconds in the future,
/freebsd-current/contrib/tzcode/
H A Dzic.c1807 ** into a number of seconds.
1837 warning(_("fractional seconds rejected by"
2385 /* Omit as many initial leap seconds as possible, such that the
2492 ** Correct for leap seconds.
2841 int seconds, minutes; local
2848 seconds = offset % SECSPERMIN;
2860 if (minutes | seconds) {
2863 if (seconds) {
2864 *p++ = '0' + seconds / 10;
2865 *p++ = '0' + seconds
2928 register int seconds; local
[all...]
/freebsd-current/lib/libpfctl/
H A Dlibpfctl.c754 rule->max_src_conn_rate.seconds =
755 nvlist_get_number(nvl, "max_src_conn_rate.seconds");
1224 snl_add_msg_attr_u32(nw, PF_RT_MAX_SRC_CONN_RATE_SECS, r->max_src_conn_rate.seconds);
1592 { .type = PF_RT_MAX_SRC_CONN_RATE_SECS, .off = _OUT(r.max_src_conn_rate.seconds), .cb = snl_attr_get_uint32 },
2527 pfctl_set_timeout(struct pfctl_handle *h, uint32_t timeout, uint32_t seconds) argument
2543 snl_add_msg_attr_u32(&nw, PF_TO_SECONDS, seconds);
2560 uint32_t seconds; member in struct:pfctl_nl_timeout
2564 { .type = PF_TO_SECONDS, .off = _OUT(seconds), .cb = snl_attr_get_uint32 },
2571 pfctl_get_timeout(struct pfctl_handle *h, uint32_t timeout, uint32_t *seconds) argument
2603 if (seconds !
[all...]
/freebsd-current/crypto/openssh/
H A Dpacket.c194 u_int32_t rekey_interval; /* how often in seconds */
2188 ssh_packet_set_rekey_limits(struct ssh *ssh, u_int64_t bytes, u_int32_t seconds) argument
2190 debug3("rekey after %llu bytes, %u seconds", (unsigned long long)bytes,
2191 (unsigned int)seconds);
2193 ssh->state->rekey_interval = seconds;
2199 time_t seconds; local
2201 seconds = ssh->state->rekey_time + ssh->state->rekey_interval -
2203 return (seconds <= 0 ? 1 : seconds);
/freebsd-current/sys/netpfil/pf/
H A Dpf_nl.c690 { .type = PF_RT_MAX_SRC_CONN_RATE_SECS, .off = _OUT(max_src_conn_rate.seconds), .cb = nlattr_get_uint32 },
925 nlattr_add_u32(nw, PF_RT_MAX_SRC_CONN_RATE_SECS, rule->max_src_conn_rate.seconds);
1355 uint32_t seconds; member in struct:pf_nl_set_timeout
1360 { .type = PF_TO_SECONDS, .off = _OUT(seconds), .cb = nlattr_get_uint32 },
1376 return (pf_ioctl_set_timeout(attrs.timeout, attrs.seconds, NULL));
1391 error = pf_ioctl_get_timeout(attrs.timeout, &attrs.seconds);
1403 nlattr_add_u32(nw, PF_TO_SECONDS, attrs.seconds);
H A Dpf_ioctl.c1573 if (diff >= in->conn_rate.seconds)
1578 in->conn_rate.seconds;
1982 krule->max_src_conn_rate.seconds = rule->max_src_conn_rate.seconds;
2447 pf_ioctl_set_timeout(int timeout, int seconds, int *prev_seconds) argument
2452 seconds < 0)
2457 if (timeout == PFTM_INTERVAL && seconds == 0)
2458 seconds = 1;
2459 V_pf_default_rule.timeout[timeout] = seconds;
2460 if (timeout == PFTM_INTERVAL && seconds < ol
2472 pf_ioctl_get_timeout(int timeout, int *seconds) argument
[all...]
/freebsd-current/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.c2256 "Current IDLE time limit is %d seconds; max %d",
2267 "Maximum IDLE time must be between 30 and %d seconds",
2273 "Maximum IDLE time set to %d seconds",
3165 "Timeout (%d seconds): closing control connection.",
3168 syslog(LOG_INFO, "User %s timed out after %d seconds",
/freebsd-current/contrib/llvm-project/llvm/include/llvm/XRay/
H A DFDRRecords.h148 uint64_t seconds() const { return Seconds; } function in class:llvm::xray::WallclockRecord
/freebsd-current/sbin/ipf/ipfstat/
H A Dipfstat.c1956 int hours, minutes, seconds; local
1958 /* ttl is in half seconds */
1964 seconds = ttl % 60;
1967 snprintf(ttlbuf, sizeof(ttlbuf), "%2d:%02d:%02d", hours, minutes, seconds);
1969 snprintf(ttlbuf, sizeof(ttlbuf), "%2d:%02d", minutes, seconds);
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupportPlugin.cpp195 auto TimeStamp = std::chrono::duration_cast<std::chrono::seconds>(
/freebsd-current/contrib/llvm-project/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp179 // Wait for 10 seconds for pipe to be opened.
181 std::chrono::seconds{10});
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DHost.cpp482 true, std::chrono::seconds(1));
/freebsd-current/contrib/kyua/utils/process/
H A Dexecutor_test.cpp232 /// \param seconds Seconds to sleep for before termination.
233 child_sleep(const int seconds) : _seconds(seconds) argument
/freebsd-current/crypto/openssl/include/openssl/
H A Dbio.h532 # define BIO_set_ssl_renegotiate_timeout(b,seconds) \
533 BIO_ctrl(b,BIO_C_SET_SSL_RENEGOTIATE_TIMEOUT,seconds,NULL)
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h312 void WaitForDebugger(unsigned seconds, const char *label);
313 void SleepForSeconds(unsigned seconds);
/freebsd-current/contrib/llvm-project/libcxx/include/__chrono/
H A Dformatter.h87 auto __fraction = __value - chrono::duration_cast<chrono::seconds>(__value);
92 // seconds, then the format is a decimal floating-point number with a
95 // floating-point decimal seconds cannot be made within 18 fractional
209 // conversion. In order to avoid that issue convert to seconds as
211 __sstr << chrono::duration_cast<chrono::days>(chrono::duration_cast<chrono::seconds>(__value)).count();
/freebsd-current/contrib/llvm-project/libcxx/modules/std/
H A Dchrono.inc67 using std::chrono::seconds;

Completed in 408 milliseconds

12345678910