Searched refs:timeout (Results 101 - 125 of 1541) sorted by relevance

1234567891011>>

/freebsd-current/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sysevent/
H A Dtst.post.d37 timeout = timestamp + 5000000000;
84 /timestamp > timeout/
/freebsd-current/contrib/netbsd-tests/kernel/kqueue/
H A Dt_proc3.c62 struct timespec timeout; local
80 timeout.tv_sec = 0;
81 timeout.tv_nsec = 0;
86 RL(kevent(kq, NULL, 0, &ke, 1, &timeout));
H A Dt_proc2.c95 struct timespec timeout; local
99 timeout.tv_sec = 0;
100 timeout.tv_nsec = 0;
112 RL(kevent(kq, &ke, 1, NULL, 0, &timeout));
120 RL(kevent(kq, NULL, 0, &ke, 1, &timeout));
/freebsd-current/crypto/heimdal/lib/krb5/
H A Dsend_to_kdc_plugin.h47 time_t timeout,
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Di2c-algo-bit.h42 int timeout; member in struct:i2c_algo_bit_data
/freebsd-current/libexec/ypxfr/
H A Dypxfr_getmap.c67 struct timeval timeout; local
69 timeout.tv_usec = 0;
70 timeout.tv_sec = 10;
86 (xdrproc_t)xdr_ypresp_all_seq, &status, timeout);
/freebsd-current/sbin/dhclient/
H A Dtree.h54 time_t timeout; member in struct:tree_cache
/freebsd-current/lib/libcam/
H A Dscsi_wrap.h30 int task_attr, int retry_count, int timeout, uint8_t report_type,
/freebsd-current/sys/dev/usb/storage/
H A Drio500_usb.h40 int timeout; member in struct:RioCommand
/freebsd-current/sys/dev/bwn/
H A Dif_bwn_phy_common.h36 uint16_t mask, uint16_t value, int delay, int timeout);
/freebsd-current/tests/sys/mac/portacl/
H A DMakefile13 TEST_METADATA.$t+= timeout="450"
/freebsd-current/usr.sbin/ppp/
H A Dppp.conf22 set timeout 180 # 3 minute idle timer (the default)
41 set timeout 0
/freebsd-current/usr.sbin/nscd/
H A Dnscdcli.h32 struct timeval timeout; member in struct:nscd_connection_params
/freebsd-current/tests/sys/cddl/zfs/tests/hotspare/
H A Dhotspare.kshlib109 typeset -i timeout=60
110 while [[ $i -lt $timeout ]]; do
115 if [[ $i == $timeout ]]; then
117 log_fail "Pool didn't resilver in ${timeout} seconds"
/freebsd-current/tests/sys/cddl/zfs/tests/zfsd/
H A Dzfsd_autoreplace_001_neg.ksh61 for ((timeout=0; timeout<4; timeout=$timeout+1)); do
/freebsd-current/contrib/wpa/wpa_supplicant/examples/p2p/
H A Dp2p_stop_find.py42 global timeout
51 def __init__(self,interface_name,wpas_dbus_interface,timeout):
55 self.timeout = timeout
109 # Required for timeout implementation
118 timeout = 5 variable
157 wpas_dbus_interface,timeout)
168 time.sleep(int(p2p_stop_find_test.timeout))
H A Dp2p_disconnect.py40 global timeout
49 def __init__(self,interface_name,wpas_dbus_interface,timeout):
53 self.timeout = timeout
104 # Required for timeout implementation
113 timeout = 5 variable
152 wpas_dbus_interface,timeout)
163 time.sleep(int(p2p_disconnect_test.timeout))
H A Dp2p_flush.py40 global timeout
49 def __init__(self,interface_name,wpas_dbus_interface,timeout):
53 self.timeout = timeout
104 # Required for timeout implementation
113 timeout = 5 variable
151 p2p_flush_test = P2P_Flush(interface_name, wpas_dbus_interface,timeout)
162 time.sleep(int(p2p_flush_test.timeout))
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DPredicate.h116 /// \param[in] timeout
120 /// m_value if Cond(m_value) is true, std::nullopt otherwise (timeout
123 std::optional<T> WaitFor(C Cond, const Timeout<std::micro> &timeout) { argument
126 if (!timeout) {
130 if (m_condition.wait_for(lock, *timeout, RealCond))
150 /// \param[in] timeout
154 /// true if the \a m_value is equal to \a value, false otherwise (timeout
157 const Timeout<std::micro> &timeout = std::nullopt) {
158 return WaitFor([&value](T current) { return value == current; }, timeout) !=
178 /// \param[in] timeout
187 return WaitFor([&value](T current) { return value != current; }, timeout); member in namespace:lldb_private
[all...]
/freebsd-current/usr.bin/tip/libacu/
H A Dbiz31.c48 static int timeout = 0; variable
88 if (timeout) {
91 (void)snprintf(line, sizeof line, "%ld second dial timeout",
100 if (timeout)
158 timeout = 1;
169 timeout = 0;
172 printf("\07timeout waiting for reply\n");
183 return (timeout == 0);
201 timeout = 0; /* guard against disconnection */
/freebsd-current/sys/dev/ftwd/
H A Dftwd.c50 uint64_t timeout; local
57 /* Convert the requested timeout to seconds. */
59 timeout = (uint64_t)1 << (cmd - WD_TO_1SEC);
61 timeout = 1;
63 if (timeout <= UINT8_MAX) {
64 val = timeout;
66 } else if ((timeout / 60) <= UINT8_MAX) {
67 val = timeout / 60;
/freebsd-current/bin/pwait/
H A Dpwait.c52 fprintf(stderr, "usage: pwait [-t timeout] [-ov] pid ...\n");
68 double timeout; local
83 timeout = strtod(optarg, &end);
84 if (end == optarg || errno == ERANGE || timeout < 0) {
85 errx(EX_DATAERR, "timeout value");
92 timeout *= 60;
95 timeout *= 60;
98 errx(EX_DATAERR, "timeout unit");
100 if (timeout > 100000000L) {
101 errx(EX_DATAERR, "timeout valu
[all...]
/freebsd-current/contrib/sendmail/libmilter/
H A Dlibmilter.h75 time_t ctx_timeout; /* timeout */
157 struct timespec timeout; \
160 timeout.tv_sec = now.tv_sec + to; \
161 timeout.tv_nsec = now.tv_usec / 1000; \
162 r = pthread_cond_timedwait(cp,mp,&timeout); \
176 # define MI_MS(timeout) (((timeout)->tv_sec * 1000) + (((timeout)->tv_usec) / 1000))
200 # define FD_WR_READY(sd, wrs, timeout) \
201 poll(&(wrs), 1, MI_MS(timeout))
[all...]
/freebsd-current/sbin/camcontrol/
H A Dtimestamp.c64 int timeout);
66 int task_attr, int retry_count, int timeout);
69 int timeout);
73 int task_attr, int retry_count, int timeout)
107 /*timeout*/ timeout ? timeout : 5000);
158 /*timeout*/ timeout ? timeout
72 set_restore_flags(struct cam_device *device, uint8_t *flags, int set_flag, int task_attr, int retry_count, int timeout) argument
185 report_timestamp(struct cam_device *device, uint64_t *ts, int task_attr, int retry_count, int timeout) argument
243 set_timestamp(struct cam_device *device, char *format_string, char *timestamp_string, int task_attr, int retry_count, int timeout) argument
328 timestamp(struct cam_device *device, int argc, char **argv, char *combinedopt, int task_attr, int retry_count, int timeout, int verbosemode __unused) argument
[all...]
/freebsd-current/tools/test/stress2/misc/
H A Dmkfifo5.sh80 struct timeval timeout;
107 /* timeout */
111 timeout.tv_sec = 1;
112 timeout.tv_usec = 0;
113 if ((n = select(fd + 1, &rset, NULL, NULL, &timeout)) < 0)
126 /* timeout */
130 timeout.tv_sec = 1;
131 timeout.tv_usec = 0;
132 if ((n = select(fd + 1, &rset, NULL, NULL, &timeout)) < 0)

Completed in 261 milliseconds

1234567891011>>