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

12345678910

/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/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/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/lib/libpfctl/
H A Dlibpfctl.h198 uint32_t seconds; member in struct:pfctl_rule::__anon129
/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;
/freebsd-current/contrib/ntp/scripts/update-leap/
H A Dupdate-leap.in45 # https://www.ietf.org/timezones/data/leap-seconds
47 # http://www.ietf.org/timezones/data/leap-seconds.list
49 my $LEAPSRC = 'https://www.ietf.org/timezones/data/leap-seconds.list';
197 move_file($TMP_FILE, 'leap-seconds.list_corrupt');
311 # Validate a leap-seconds file checksum
320 # Date (seconds since 1900) leaps : leaps is the # of seconds to add
448 leap seconds are announced at least one month in advance (usually
/freebsd-current/sbin/pfctl/
H A Dpfctl.c1669 printf("%-20s %10d", pf_timeouts[i].name, pt.seconds);
2472 pfctl_set_timeout(struct pfctl *pf, const char *opt, int seconds, int quiet) argument
2481 pf->timeout[pf_timeouts[i].timeout] = seconds;
2494 printf("set timeout %s %d\n", opt, seconds);
2500 pfctl_load_timeout(struct pfctl *pf, unsigned int timeout, unsigned int seconds) argument
2506 pt.seconds = seconds;
H A Dparse.y188 u_int32_t seconds;
199 u_int32_t seconds;
2566 !o->data.max_src_conn_rate.seconds) {
2580 r.max_src_conn_rate.seconds =
2581 o->data.max_src_conn_rate.seconds;
2641 o->data.timeout.seconds;
2677 r.max_src_conn_rate.seconds) {
2684 r.max_src_conn_rate.seconds)
2686 r.max_src_conn_rate.seconds;
4319 $$->data.max_src_conn_rate.seconds
[all...]

Completed in 497 milliseconds

12345678910