Searched refs:timeout (Results 251 - 275 of 1269) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/lib/libthr/thread/
H A Dthr_syscalls.c132 timespec *timeout)
139 ret = __sys_aio_suspend(iocbs, niocb, timeout);
329 __thr_poll(struct pollfd *fds, unsigned int nfds, int timeout) argument
336 ret = __sys_poll(fds, nfds, timeout);
349 timeout, const sigset_t *newsigmask)
356 ret = __sys_ppoll(pfd, nfds, timeout, newsigmask);
384 struct kevent *eventlist, int nevents, const struct timespec *timeout)
394 nevents, timeout));
399 timeout);
486 struct timeval *timeout)
131 __thr_aio_suspend(const struct aiocb * const iocbs[], int niocb, const struct timespec *timeout) argument
348 __thr_ppoll(struct pollfd pfd[], nfds_t nfds, const struct timespec * timeout, const sigset_t *newsigmask) argument
383 __thr_kevent(int kq, const struct kevent *changelist, int nchanges, struct kevent *eventlist, int nevents, const struct timespec *timeout) argument
485 __thr_select(int numfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DListener.cpp346 const Timeout<std::micro> &timeout,
352 LLDB_LOG(log, "this = {0}, timeout = {1} for {2}", this, timeout, m_name);
363 if (!timeout)
366 result = m_events_condition.wait_for(lock, *timeout);
368 if (result == std::cv_status::timeout) {
387 const Timeout<std::micro> &timeout) {
388 return GetEventInternal(timeout, broadcaster, nullptr, 0, event_type_mask,
394 const Timeout<std::micro> &timeout) {
395 return GetEventInternal(timeout, broadcaste
345 GetEventInternal( const Timeout<std::micro> &timeout, Broadcaster *broadcaster, const ConstString *broadcaster_names, uint32_t num_broadcaster_names, uint32_t event_type_mask, EventSP &event_sp) argument
385 GetEventForBroadcasterWithType( Broadcaster *broadcaster, uint32_t event_type_mask, EventSP &event_sp, const Timeout<std::micro> &timeout) argument
392 GetEventForBroadcaster(Broadcaster *broadcaster, EventSP &event_sp, const Timeout<std::micro> &timeout) argument
398 GetEvent(EventSP &event_sp, const Timeout<std::micro> &timeout) argument
[all...]
/freebsd-11-stable/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-11-stable/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-11-stable/libexec/talkd/
H A Dtalkd.c105 signal(SIGALRM, timeout);
128 timeout(int sig __unused) function
/freebsd-11-stable/libexec/ypxfr/
H A Dypxfrd_getmap.c108 struct timeval timeout = { 0, 25 }; local
135 timeout) != RPC_SUCCESS) {
/freebsd-11-stable/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-11-stable/contrib/libpcap/
H A Dpcap-snit.c239 struct timeval timeout; local
256 if (p->opt.timeout != 0) {
257 timeout.tv_sec = p->opt.timeout / 1000;
258 timeout.tv_usec = (p->opt.timeout * 1000) % 1000000;
260 si.ic_len = sizeof(timeout);
261 si.ic_dp = (char *)&timeout;
/freebsd-11-stable/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-11-stable/contrib/ofed/libibmad/
H A Dvendor.c87 rpc.timeout = resp_expected ? call->timeout : 0;
H A Dbm.c75 rpc.timeout = resp_expected ? call->timeout : 0;
H A Dserv.c77 umad, IB_MAD_SIZE, mad_get_timeout(srcport, rpc->timeout),
141 /* cleared by default: timeout, datasz, dataoffs, mkey, mask */
167 IB_MAD_SIZE, mad_get_timeout(srcport, rpc.timeout), 0) < 0) {
175 void *mad_receive(void *umad, int timeout) argument
177 return mad_receive_via(umad, timeout, ibmp);
180 void *mad_receive_via(void *umad, int timeout, struct ibmad_port *srcport) argument
187 mad_get_timeout(srcport, timeout))) < 0) {
/freebsd-11-stable/contrib/ofed/opensm/include/vendor/
H A Dosm_vendor_api.h99 * timeout.
135 IN const uint32_t timeout);
141 * timeout
142 * [in] transaction timeout
223 IN const uint32_t timeout);
233 * timeout
234 * [in] Transaction timeout value in milliseconds.
/freebsd-11-stable/sys/dev/smartpqi/
H A Dsmartpqi_misc.c72 softs->os_specific.wellness_periodic = timeout(os_wellness_periodic,
101 timeout(os_start_heartbeat_timer, softs,
/freebsd-11-stable/usr.sbin/ppp/
H A Ddatalink.h81 int next_timeout; /* Redial next timeout value */
82 int inc; /* Increment timeout by `inc' each time read */
84 int timeout; /* Redial timeout value (end of phone list) */ member in struct:datalink::__anon8847::__anon8850
88 int timeout; /* Timeout before reconnect on carrier loss */ member in struct:datalink::__anon8847::__anon8851
106 int incs; /* # times our timeout has been incremented */
/freebsd-11-stable/contrib/telnet/telnet/
H A Dnetwork.c82 static struct timeval timeout = { 0, 0 }; local
89 value = select(net+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
/freebsd-11-stable/usr.sbin/yppush/
H A Dyppush_main.c67 static int yppush_timeout = 80; /* Default timeout. */
225 * 0 timeout
233 struct timeval timeout; local
235 timeout.tv_usec = 0;
236 timeout.tv_sec = timeout_secs;
240 rc = select(svc_maxfd + 1, &readfds, NULL, NULL, &timeout);
287 struct timeval timeout; local
289 timeout.tv_usec = 0;
290 timeout.tv_sec = 0;
338 * Reduce timeout t
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/posix/
H A DPipePosix.h44 const std::chrono::microseconds &timeout) override;
70 const std::chrono::microseconds &timeout,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DCommunication.cpp124 const Timeout<std::micro> &timeout,
129 "this = {0}, dst = {1}, dst_len = {2}, timeout = {3}, connection = {4}",
130 this, dst, dst_len, timeout, m_connection_sp.get());
135 if (cached_bytes > 0 || (timeout && timeout->count() == 0)) {
151 while (listener_sp->GetEvent(event_sp, timeout)) {
168 return ReadFromConnection(dst, dst_len, timeout, status, error_ptr);
291 const Timeout<std::micro> &timeout,
296 return connection_sp->Read(dst, dst_len, timeout, status, error_ptr);
123 Read(void *dst, size_t dst_len, const Timeout<std::micro> &timeout, ConnectionStatus &status, Status *error_ptr) argument
290 ReadFromConnection(void *dst, size_t dst_len, const Timeout<std::micro> &timeout, ConnectionStatus &status, Status *error_ptr) argument
/freebsd-11-stable/contrib/subversion/subversion/libsvn_wc/
H A Dwc_db_util.c119 apr_int32_t timeout,
144 0, NULL, timeout, result_pool, scratch_pool));
113 svn_wc__db_util_open_db(svn_sqlite__db_t **sdb, const char *dir_abspath, const char *sdb_fname, svn_sqlite__mode_t smode, svn_boolean_t exclusive, apr_int32_t timeout, const char *const *my_statements, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
/freebsd-11-stable/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-11-stable/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-11-stable/contrib/unbound/services/
H A Doutside_network.h108 /** timeout for delayclose */
164 * or reused to the same destination again. with timeout to close.
173 * The list contains empty connections, that wait for timeout or
267 * There is a timeout and read event on the fd, to close it. */
300 /** timeout for REUSE entries in milliseconds. */
319 /** timeout event */
321 /** callback for the timeout, error or reply to the message */
333 /** timeout in msec */
334 int timeout; member in struct:pending
380 /** timeout even
384 int timeout; member in struct:waiting_tcp
[all...]
/freebsd-11-stable/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 164 milliseconds

<<11121314151617181920>>