Searched refs:timeout (Results 76 - 100 of 853) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/cmd/sendmail/libmilter/
H A Dsmfi.c51 struct timeval timeout; local
55 timeout.tv_sec = ctx->ctx_timeout;
56 timeout.tv_usec = 0;
74 r = mi_wr_cmd(ctx->ctx_sd, &timeout, cmd, buf, len);
184 struct timeval timeout;
188 timeout.tv_sec = ctx->ctx_timeout;
189 timeout.tv_usec = 0;
217 r = mi_wr_cmd(ctx->ctx_sd, &timeout, cmd, buf, len);
249 struct timeval timeout; local
253 timeout
389 struct timeval timeout; local
418 struct timeval timeout; local
449 struct timeval timeout; local
493 struct timeval timeout; local
855 struct timeval timeout; local
[all...]
H A Dcomm.c47 ** timeout -- maximum time to wait
59 mi_rd_cmd(sd, timeout, cmd, rlen, name)
61 struct timeval *timeout;
82 ret = FD_RD_READY(sd, rds, excs, timeout);
155 ret = FD_RD_READY(sd, rds, excs, timeout);
206 /* select returned 0 (timeout) or < 0 (error) */
233 ** timeout -- maximum time to wait
241 retry_writev(fd, iov, iovcnt, timeout)
245 struct timeval *timeout;
263 ** We don't care much about the timeout her
[all...]
/illumos-gate/usr/src/cmd/hal/hald/
H A Dhald_runner.h41 /* Default sane timeout */
65 guint32 timeout,
72 guint32 timeout,
/illumos-gate/usr/src/cmd/lms/heci/
H A Dheci.h69 virtual int ReceiveMessage(unsigned char *buffer, int len, unsigned long timeout = 2000) = 0;
70 virtual int SendMessage(const unsigned char *buffer, int len, unsigned long timeout = 2000) = 0;
/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_ep_dup_connect.c59 * timeout
79 IN DAT_TIMEOUT timeout,
117 remote_ia_address_ptr, remote_conn_qual, timeout,
76 dapl_ep_dup_connect( IN DAT_EP_HANDLE ep_handle, IN DAT_EP_HANDLE ep_dup_handle, IN DAT_TIMEOUT timeout, IN DAT_COUNT private_data_size, IN const DAT_PVOID private_data, IN DAT_QOS qos) argument
/illumos-gate/usr/src/uts/sun4u/starcat/sys/
H A Dmboxsc.h83 * NOTE: The timeout arguments to mboxsc_putmsg() and mboxsc_getmsg() are
90 uint64_t *transid, uint32_t length, void *datap, clock_t timeout);
92 uint64_t *transid, uint32_t *length, void *datap, clock_t timeout);
/illumos-gate/usr/src/cmd/dtrace/test/tst/common/mib/
H A Dtst.tcp.ksh40 timeout=15
136 timeout=$(($timeout-1))
137 if [ $timeout -eq 0 ]; then
/illumos-gate/usr/src/cmd/sgs/libldmake/common/
H A Dlock.c70 * The timeout value specifies how long to wait for stale locks
71 * to disappear. If the lock is more than 'timeout' seconds old
90 file_lock(char *name, char *lockname, int timeout) argument
99 if (timeout <= 0) {
100 timeout = 15;
151 if (statb.st_mtime + timeout < fs_statb.st_mtime) {
/illumos-gate/usr/src/uts/common/xen/public/
H A Dsched.h75 * optional timeout may be specified.
82 uint64_t timeout; member in struct:sched_poll
/illumos-gate/usr/src/uts/common/io/fibre-channel/fca/qlc/
H A Dqlc.conf82 #Name: Login timeout
88 login-timeout=3;
150 # or applications to timeout the IO's.
194 #Name: Link down timeout
199 link-down-timeout=0;
/illumos-gate/usr/src/cmd/make/lib/makestate/
H A Dlock.c57 * The timeout value specifies how long to wait for stale locks
58 * to disappear. If the lock is more than 'timeout' seconds old
77 file_lock(char * name, char * lockname, int timeout) argument
86 if (timeout <= 0) {
87 timeout = 15;
134 if (statb.st_mtime + timeout < fs_statb.st_mtime) {
/illumos-gate/usr/src/cmd/make/lib/vroot/
H A Dlock.cc58 * The timeout value specifies how long to wait for stale locks
59 * to disappear. If the lock is more than 'timeout' seconds old
86 file_lock(char *name, char *lockname, int *file_locked, int timeout) argument
97 if (timeout <= 0) {
98 timeout = 120;
145 if (++counter > timeout ) {
/illumos-gate/usr/src/cmd/sendmail/libsm/
H A Dfget.c33 ** timeout -- time to complete reading the string in milliseconds
40 ** timeout: NULL and errno set to EAGAIN
47 sm_io_fgets(fp, timeout, buf, n)
49 int timeout;
74 if (sm_refill(fp, timeout) != 0)
H A Dfread.c30 ** timeout -- time to complete the read
43 sm_io_read(fp, timeout, buf, size)
45 int timeout;
92 if (sm_refill(fp, timeout) != 0)
/illumos-gate/usr/src/cmd/tip/aculib/
H A Dventel.c26 static int timeout = 0; variable
79 if (timeout) {
80 (void) sprintf(line, "%d second dial timeout",
85 if (timeout)
133 (void) printf("\07timeout waiting for reply\n");
134 timeout = 1;
145 timeout = 0;
H A Ddf.c21 static void timeout(void);
78 (void) signal(SIGALRM, (sig_handler_t)timeout);
115 timeout(void) function
/illumos-gate/usr/src/stand/lib/fs/nfs/
H A Dnfs2ops.c68 struct timeval timeout; local
98 timeout.tv_sec = NFS_REXMIT_MIN; /* Total wait for call */
99 timeout.tv_usec = 0;
103 xdr_readres, (caddr_t)&read_res, timeout);
124 timeout.tv_sec = NFS_REXMIT_MIN;
127 if (timeout.tv_sec < NFS_REXMIT_MAX)
128 timeout.tv_sec++;
130 timeout.tv_sec = 0;
188 struct timeval timeout = {0, 0}; /* default */ local
192 xdr_attrstat, (caddr_t)&getattr_res, timeout);
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/
H A Drdate.c78 static void timeout(int);
109 (void) signal(SIGALRM, timeout);
182 timeout(int sig) function
/illumos-gate/usr/src/cmd/hal/hald-runner/
H A Drunner.c61 guint timeout; member in struct:__anon633
81 if (rd->timeout != 0)
82 g_source_remove(rd->timeout);
205 /* Ensure the timeout is not removed in the delete */
206 rd->timeout = 0;
255 printf("Run started %s (%u) (%d) \n!", r->argv[0], r->timeout,
305 /* Add timeout if needed */
306 if (r->timeout > 0)
307 rd->timeout = g_timeout_add(r->timeout, run_timedou
[all...]
/illumos-gate/usr/src/uts/common/io/vscan/
H A Dvscan_door.c101 clock_t timeout, time_left; local
108 timeout = time_left;
110 timeout, TR_CLOCK_TICK);
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dcbreak.c103 cur_term->timeout = 0;
H A Dnocbreak.c76 cur_term->timeout = 0;
H A Dnoraw.c76 cur_term->timeout = 0;
H A Draw.c83 cur_term->timeout = 0;
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwgetch.c116 int ch, i, j, timeout; local
180 timeout = w->_flags & W_USE_TIMEOUT;
200 if (timeout) {
206 timeout = 0;

Completed in 103 milliseconds

1234567891011>>