Searched refs:timeout (Results 176 - 200 of 1541) sorted by relevance

1234567891011>>

/freebsd-current/sys/dev/pms/RefTisa/sat/src/
H A Dsmtimer.c59 timerRequest->timeout = 0;
71 bit32 timeout,
78 timerRequest->timeout = timeout;
139 timerRequest_to_process->timeout--;
141 if (timerRequest_to_process->timeout == 0)
68 smSetTimerRequest( smRoot_t *smRoot, smTimerRequest_t *timerRequest, bit32 timeout, smTimerCBFunc_t CBFunc, void *timerData1, void *timerData2, void *timerData3 ) argument
/freebsd-current/sys/dev/pms/RefTisa/discovery/dm/
H A Ddmtimer.c60 timerRequest->timeout = 0;
72 bit32 timeout,
79 timerRequest->timeout = timeout;
141 timerRequest_to_process->timeout--;
143 if (timerRequest_to_process->timeout == 0)
69 dmSetTimerRequest( dmRoot_t *dmRoot, dmTimerRequest_t *timerRequest, bit32 timeout, dmTimerCBFunc_t CBFunc, void *timerData1, void *timerData2, void *timerData3 ) argument
/freebsd-current/contrib/wpa/src/ap/
H A Dwps_hostapd.h21 const char *uuid, const char *pin, int timeout);
28 const char * hostapd_wps_ap_pin_random(struct hostapd_data *hapd, int timeout);
31 int timeout);
H A Dwnm_ap.h28 unsigned int auto_report, unsigned int timeout);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/fault/
H A Dauto_online_001_pos.ksh126 typeset -i timeout=0
128 if ((timeout == $MAXTIMEOUT)); then
131 ((timeout++))
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Utility/
H A DTimeout.h24 // - std::nullopt - no timeout, the call should wait forever - 0 - poll, only
57 static void format(const lldb_private::Timeout<Ratio> &timeout, argument
61 if (!timeout)
64 format_provider<Dur>::format(*timeout, OS, Options);
/freebsd-current/lib/libc/rpc/
H A Drtime.c67 struct timeval *timeout)
78 if (timeout == NULL) {
107 (fd_set *)NULL, (fd_set *)NULL, timeout);
66 rtime(struct sockaddr_in *addrp, struct timeval *timep, struct timeval *timeout) argument
/freebsd-current/contrib/sendmail/libsm/
H A Dungetc.c83 ** timeout -- time to complete ungetc
96 sm_io_ungetc(fp, timeout, c)
98 int timeout;
104 if (timeout == SM_TIME_IMMEDIATE)
128 if (sm_flush(fp, &timeout))
H A Dsetvbuf.c37 ** timeout -- time allowed for completing the function
48 sm_io_setvbuf(fp, timeout, buf, mode, size)
50 int timeout;
82 SM_CONVERT_TIME(fp, fd, timeout, &to);
83 (void) sm_flush(fp, &timeout);
/freebsd-current/contrib/netbsd-tests/kernel/kqueue/
H A Dt_sig.c62 struct timespec timeout; local
113 timeout.tv_sec = 1;
114 timeout.tv_nsec = 0;
120 RL(n = kevent(kq, NULL, 0, event, 1, &timeout));
/freebsd-current/contrib/ofed/opensm/complib/
H A Dcl_event.c118 struct timespec timeout; local
152 timeout.tv_sec = curtime.tv_sec + (wait_us / 1000000)
154 timeout.tv_nsec = n_sec % 1000000000;
158 &timeout);
/freebsd-current/contrib/ofed/opensm/include/complib/
H A Dcl_timer_osd.h71 struct timespec timeout; member in struct:_cl_timer_t
/freebsd-current/contrib/ofed/opensm/include/vendor/
H A Dosm_vendor_test.h104 uint32_t timeout; member in struct:_osm_vendor
/freebsd-current/tools/test/stress2/misc/
H A Dselfd.sh90 struct timeval timeout;
112 timeout.tv_sec = 0;
113 timeout.tv_usec = arc4random() % 10000 + 100;
117 if ((n = select(PIPES, &rset, NULL, NULL, &timeout)) < 0)
H A Dsnap6.sh33 timeout 5m dd if=/dev/zero of=$root/big bs=1m count=$(( free / 1024 - 90)) \
41 timeout 5m dd if=/dev/zero of=$root/big2 bs=1m status=none
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.timeout.ksh31 $TESTPOOL $ZCP_ROOT/lua_core/tst.timeout.zcp
37 log_mustnot eval 'error=$(zfs program -t '$lim' $TESTPOOL $ZCP_ROOT/lua_core/tst.timeout.zcp 2>&1)'
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dbsd-poll.c100 poll(struct pollfd *fds, nfds_t nfds, int timeout) argument
104 /* poll timeout is msec, ppoll is timespec (sec + nsec) */
105 if (timeout >= 0) {
106 ts.tv_sec = timeout / 1000;
107 ts.tv_nsec = (timeout % 1000) * 1000000;
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBListener.cpp135 Timeout<std::micro> timeout(std::nullopt);
137 assert(timeout_secs != 0); // Take this out after all calls with timeout
139 timeout = std::chrono::seconds(timeout_secs);
142 if (m_opaque_sp->GetEvent(event_sp, timeout)) {
159 Timeout<std::micro> timeout(std::nullopt);
161 timeout = std::chrono::seconds(num_seconds);
164 timeout)) {
179 Timeout<std::micro> timeout(std::nullopt);
181 timeout = std::chrono::seconds(num_seconds);
184 broadcaster.get(), event_type_mask, event_sp, timeout)) {
[all...]
/freebsd-current/sys/compat/linux/
H A Dlinux_ipc.h90 struct l_timespec *timeout; member in struct:linux_semtimedop_args
/freebsd-current/lib/libc/tests/nss/
H A DMakefile13 TEST_METADATA.gethostby_test= timeout="1200"
/freebsd-current/sys/dev/viawd/
H A Dviawd.h45 unsigned int timeout; member in struct:viawd_softc
/freebsd-current/tests/sys/netpfil/pf/
H A Ddivapp.c75 struct timeval timeout; local
80 timeout.tv_sec = 3;
81 timeout.tv_usec = 0;
83 s = select(c->fd + 1, &readfds, 0, 0, &timeout);
86 if (s != 1) // timeout
/freebsd-current/sys/dev/tpm/
H A Dtpm_tis_core.c91 uint32_t mask, uint32_t val, int32_t timeout);
232 int32_t timeout)
239 /* If interrupts are enabled sleep for timeout duration */
241 tsleep(sc, PWAIT, "TPM WITH INTERRUPTS", timeout / tick);
248 while (timeout > 0) {
253 timeout -= tick;
261 int timeout; local
264 timeout = TPM_TIMEOUT_A;
266 while (timeout-- > 0) {
321 int timeout; local
231 tpm_wait_for_u32(struct tpm_sc *sc, bus_size_t off, uint32_t mask, uint32_t val, int32_t timeout) argument
385 int timeout; local
[all...]
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Dwait.h145 * Returns -ERESTARTSYS for a signal, 0 if cond is false after timeout, 1 if
146 * cond is true after timeout, remaining jiffies (> 0) if cond is true before
147 * timeout.
149 #define __wait_event_common(wqh, cond, timeout, state, lock) ({ \
151 const int __timeout = ((int)(timeout)) < 1 ? 1 : (timeout); \
185 #define wait_event_timeout(wqh, cond, timeout) ({ \
186 __wait_event_common(wqh, cond, timeout, TASK_UNINTERRUPTIBLE, \
200 #define wait_event_interruptible_timeout(wqh, cond, timeout) ({ \
201 __wait_event_common(wqh, cond, timeout, TASK_INTERRUPTIBL
[all...]
/freebsd-current/tools/test/gpioevents/
H A Dgpioevents.c67 "[-t timeout] [-d delay-usec] pin intr-config pin-mode [pin intr-config pin-mode ...]\n\n",
254 run_poll(bool loop, int handle, const char *file, int timeout, u_int delayus) argument
269 res = poll(&fds, 1, timeout);
290 run_select(bool loop, int handle, const char *file, int timeout, u_int delayus) argument
299 if (timeout != INFTIM) {
300 tv.tv_sec = timeout / 1000;
301 tv.tv_usec = (timeout % 1000) * 1000;
328 run_kqueue(bool loop, int handle, const char *file, int timeout, u_int delayus) argument
337 if (timeout != INFTIM) {
338 tv.tv_sec = timeout / 100
477 int timeout = INFTIM; local
[all...]

Completed in 372 milliseconds

1234567891011>>