Searched refs:timeout (Results 226 - 250 of 1117) sorted by relevance

1234567891011>>

/freebsd-10.3-release/usr.sbin/ppp/
H A Dchat.h58 int TimeoutSec; /* Expect timeout value */
72 struct pppTimer timeout; /* TimeoutSec timer */ member in struct:chat
H A Dfilter.h70 unsigned timeout; /* Keep alive value for passed packet */ member in struct:filterent
H A Ddatalink.h79 int next_timeout; /* Redial next timeout value */
80 int inc; /* Increment timeout by `inc' each time read */
82 int timeout; /* Redial timeout value (end of phone list) */ member in struct:datalink::__anon12684::__anon12687
86 int timeout; /* Timeout before reconnect on carrier loss */ member in struct:datalink::__anon12684::__anon12688
104 int incs; /* # times our timeout has been incremented */
/freebsd-10.3-release/lib/libthr/thread/
H A Dthr_syscalls.c136 timespec *timeout)
143 ret = __sys_aio_suspend(iocbs, niocb, timeout);
311 __thr_poll(struct pollfd *fds, unsigned int nfds, int timeout) argument
318 ret = __sys_poll(fds, nfds, timeout);
331 timeout, const sigset_t *newsigmask)
338 ret = __sys_ppoll(pfd, nfds, timeout, newsigmask);
366 struct kevent *eventlist, int nevents, const struct timespec *timeout)
376 nevents, timeout));
381 timeout);
468 struct timeval *timeout)
135 __thr_aio_suspend(const struct aiocb * const iocbs[], int niocb, const struct timespec *timeout) argument
330 __thr_ppoll(struct pollfd pfd[], nfds_t nfds, const struct timespec * timeout, const sigset_t *newsigmask) argument
365 __thr_kevent(int kq, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout) argument
467 __thr_select(int numfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout) argument
[all...]
/freebsd-10.3-release/contrib/ofed/management/infiniband-diags/scripts/
H A Dibcheckerrors.in44 -P | -C | -t | -timeout)
H A Dibchecknet.in37 -P | -C | -t | -timeout)
H A Dibchecknode.in47 -P | -C | -t | -timeout)
H A Dibcheckstate.in39 -P | -C | -t | -timeout)
H A Dibdatacounters.in44 -P | -C | -t | -timeout)
/freebsd-10.3-release/contrib/ofed/management/libibmad/src/
H A Dvendor.c80 rpc.timeout = resp_expected ? call->timeout : 0;
/freebsd-10.3-release/contrib/ofed/management/opensm/include/vendor/
H A Dosm_vendor_api.h99 * timeout.
135 IN const uint32_t timeout);
141 * timeout
142 * [in] transaction timeout
223 IN osm_log_t * const p_log, IN const uint32_t timeout);
233 * timeout
234 * [in] Transaction timeout value in milliseconds.
/freebsd-10.3-release/contrib/openbsm/bin/auditdistd/
H A Dtoken.l74 timeout { DP; return TIMEOUT; }
H A Dproto.c105 proto_common_setup(const char *srcaddr, const char *dstaddr, int timeout, argument
122 timeout, &ctx);
162 proto_connect(const char *srcaddr, const char *dstaddr, int timeout, argument
168 PJDLOG_ASSERT(timeout >= -1);
170 return (proto_common_setup(srcaddr, dstaddr, timeout,
175 proto_connect_wait(struct proto_conn *conn, int timeout) argument
184 PJDLOG_ASSERT(timeout >= 0);
186 error = conn->pc_proto->prt_connect_wait(conn->pc_ctx, timeout);
407 proto_timeout(const struct proto_conn *conn, int timeout) argument
420 tv.tv_sec = timeout;
[all...]
/freebsd-10.3-release/contrib/telnet/telnet/
H A Dnetwork.c86 static struct timeval timeout = { 0, 0 }; local
93 value = select(net+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
/freebsd-10.3-release/libexec/talkd/
H A Dtalkd.c105 signal(SIGALRM, timeout);
128 timeout(int sig __unused) function
/freebsd-10.3-release/libexec/ypxfr/
H A Dypxfrd_getmap.c108 struct timeval timeout = { 0, 25 }; local
135 timeout) != RPC_SUCCESS) {
/freebsd-10.3-release/sys/dev/isci/scil/
H A Dscic_remote_device.h264 * @param[in] timeout This parameter specifies the number of milliseconds
275 U32 timeout
285 * @param[in] timeout This parameter specifies the number of milliseconds
294 U32 timeout
331 * @brief This method returns the suggested target reset timeout. SAS and
332 * SATA devices have different timeout values in milliseconds for
338 * @return The suggested reset timeout value for the specified target device
/freebsd-10.3-release/contrib/libreadline/
H A Dinput.c182 struct timeval timeout; local
193 timeout.tv_sec = 0;
194 timeout.tv_usec = _keyboard_input_timeout;
195 result = select (tty + 1, &readfds, (fd_set *)NULL, &exceptfds, &timeout);
285 Uses the value of _keyboard_input_timeout as the timeout; if another
286 readline function wants to specify a timeout and not leave it up to
294 struct timeval timeout; local
308 timeout.tv_sec = 0;
309 timeout.tv_usec = _keyboard_input_timeout;
310 return (select (tty + 1, &readfds, (fd_set *)NULL, &exceptfds, &timeout) >
[all...]
/freebsd-10.3-release/contrib/apr/locks/unix/
H A Dthread_cond.c79 apr_interval_time_t timeout)
85 then = apr_time_now() + timeout;
/freebsd-10.3-release/contrib/ipfilter/ipsd/
H A Dslinux.c41 static int timeout; variable
80 if ((time(NULL) - now) > timeout)
/freebsd-10.3-release/contrib/bsnmp/lib/
H A Dsnmpclient.h61 /* timeout start function */
62 typedef void *(*snmp_timeout_start_f)(struct timeval *timeout,
65 /* timeout stop function */
93 struct timeval timeout; member in struct:snmp_client
/freebsd-10.3-release/usr.sbin/yppush/
H A Dyppush_main.c67 int yppush_timeout = 80; /* Default timeout. */
226 * 0 timeout
234 struct timeval timeout; local
236 timeout.tv_usec = 0;
237 timeout.tv_sec = timeout_secs;
241 rc = select(svc_maxfd + 1, &readfds, NULL, NULL, &timeout);
288 struct timeval timeout; local
290 timeout.tv_usec = 0;
291 timeout.tv_sec = 0;
339 * Reduce timeout t
[all...]
/freebsd-10.3-release/sys/dev/mc146818/
H A Dmc146818.c109 int timeout, cent, year; local
113 timeout = 1000000; /* XXX how long should we wait? */
124 if (--timeout < 0) {
125 device_printf(dev, "%s: timeout\n", __func__);
159 int sec, timeout; local
163 timeout = 1000000; /* XXX how long should we wait? */
173 if (--timeout == 0) {
174 device_printf(dev, "%s: timeout\n", __func__);
/freebsd-10.3-release/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdtimers.c143 timerRequest->timeout = 0;
159 * \param timeout timeout value
173 bit32 timeout,
180 timerRequest->timeout = timeout;
280 timerRequest_to_process->timeout--;
282 if (timerRequest_to_process->timeout == 0)
170 tdsaSetTimerRequest( tiRoot_t *tiRoot, tdsaTimerRequest_t *timerRequest, bit32 timeout, tdsaTimerCBFunc_t CBFunc, void *timerData1, void *timerData2, void *timerData3 ) argument
/freebsd-10.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-spi.c131 * @param timeout Timeout to wait for clock synchronization in seconds
136 int cvmx_spi_start_interface(int interface, cvmx_spi_mode_t mode, int timeout, int num_ports) argument
150 INVOKE_CB(cvmx_spi_callbacks.clock_detect_cb, interface, mode, timeout);
153 INVOKE_CB(cvmx_spi_callbacks.training_cb, interface, mode, timeout);
156 INVOKE_CB(cvmx_spi_callbacks.calendar_sync_cb, interface, mode, timeout);
174 * @param timeout Timeout to wait for clock synchronization in seconds
177 int cvmx_spi_restart_interface(int interface, cvmx_spi_mode_t mode, int timeout) argument
194 INVOKE_CB(cvmx_spi_callbacks.clock_detect_cb, interface, mode, timeout);
197 INVOKE_CB(cvmx_spi_callbacks.training_cb, interface, mode, timeout);
200 INVOKE_CB(cvmx_spi_callbacks.calendar_sync_cb, interface, mode, timeout);
436 cvmx_spi_clock_detect_cb(int interface, cvmx_spi_mode_t mode, int timeout) argument
508 cvmx_spi_training_cb(int interface, cvmx_spi_mode_t mode, int timeout) argument
577 cvmx_spi_calendar_sync_cb(int interface, cvmx_spi_mode_t mode, int timeout) argument
[all...]

Completed in 290 milliseconds

1234567891011>>