Searched refs:timeout (Results 26 - 50 of 241) sorted by relevance

12345678910

/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dtimeout.c30 * timeout.c
40 static char rcsID[] = "$Header: /rd/src/libc/xcurses/rcs/timeout.c 1.1 1995/06/19 16:12:10 ant Exp $";
59 (timeout)(int delay) function
62 __m_trace("timeout(%d)", delay);
67 __m_return_void("timeout");
/osnet-11/usr/src/lib/udapl/udapl_tavor/include/
H A Ddapl_name_service.h57 IN DAT_TIMEOUT timeout,
/osnet-11/usr/src/cmd/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)
200 # define FD_WR_READY(sd, excs, timeout) \
201 poll(&(wrs), 1, MI_MS(timeout))
[all...]
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...]
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dfvwrite.c36 ** timeout -- time length for function to return by
58 sm_fvwrite(fp, timeout, uio)
60 int timeout;
82 SM_CONVERT_TIME(fp, fd, timeout, &to);
100 if (IS_IO_ERROR(fd, w, timeout))
104 SM_IO_WR_TIMEOUT(fp, fd, timeout);
175 if (sm_flush(fp, &timeout))
186 if (IS_IO_ERROR(fd, w, timeout))
190 SM_IO_WR_TIMEOUT(fp, fd, timeout);
206 if ((fp->f_flags & SMNOW) != 0 && sm_flush(fp, &timeout))
[all...]
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)
H A Dsetvbuf.c38 ** timeout -- time allowed for completing the function
49 sm_io_setvbuf(fp, timeout, buf, mode, size)
51 int timeout;
83 SM_CONVERT_TIME(fp, fd, timeout, &to);
84 (void) sm_flush(fp, &timeout);
/osnet-11/usr/src/lib/libpcp/common/
H A Dpcp_common.h53 uint32_t timeout; /* timeout in seconds */ member in struct:pcp_req_msg_hdr
71 uint32_t timeout; /* timeout in seconds */ member in struct:pcp_resp_msg_hdr
99 /* defines for 'timeout' */
/osnet-11/usr/src/cmd/sendmail/include/sm/
H A Dsem.h55 # define sm_sem_acq(semid, semnum, timeout) 0
56 # define sm_sem_rel(semid, semnum, timeout) 0
/osnet-11/usr/src/cmd/hal/hald/
H A Dhald_runner.h41 /* Default sane timeout */
65 guint32 timeout,
72 guint32 timeout,
/osnet-11/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
/osnet-11/usr/src/grub/grub2/grub-core/normal/
H A Dmenu.c77 /* Return the current timeout. If the variable "timeout" is not set or
83 int timeout; local
85 val = grub_env_get ("timeout");
91 timeout = (int) grub_strtoul (val, 0, 0);
96 grub_env_unset ("timeout");
98 timeout = -1;
103 return timeout;
106 /* Set current timeout in the variable "timeout"
108 grub_menu_set_timeout(int timeout) argument
329 menu_print_timeout(int timeout) argument
500 int timeout; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/t/
H A Dtime.t37 is( $sock->{timeout}, 120, 'timeout should default to 120' );
39 # now try it with a custom timeout and a different protocol
44 is( $sock->{timeout}, 11, '_socket() should respect custom timeout value' );
126 my ($self, $timeout) = @_;
129 $self->{sock}{timeout} = $timeout;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DPing.pm26 $def_timeout = 5; # Default timeout to wait for a reply
52 # name/IP and an optional timeout in seconds. Create a tcp ping
58 $timeout # Optional timeout in seconds
62 $p = Net::Ping->new("tcp", $timeout);
67 # parameters may be specified for the protocol to use, the timeout in
77 $timeout, # Optional timeout in seconds
95 $timeout = $def_timeout unless $timeout; # Determin
[all...]
/osnet-11/usr/src/cmd/hal/hald-runner/
H A Drunner.c59 guint timeout; member in struct:__anon47
79 if (rd->timeout != 0)
80 g_source_remove(rd->timeout);
199 /* Ensure the timeout is not removed in the delete */
200 rd->timeout = 0;
249 printf("Run started %s (%d) (%d) \n!", r->argv[0], r->timeout,
299 /* Add timeout if needed */
300 if (r->timeout > 0)
301 rd->timeout = g_timeout_add(r->timeout, run_timedou
[all...]
/osnet-11/usr/src/lib/libnisdb/
H A Dldap_structs.h88 struct timeval timeout; member in struct:__anon1977
/osnet-11/usr/src/lib/libnsl/rpc/
H A Dclnt_simple.c95 struct timeval timeout, tottimeout; local
143 timeout.tv_usec = 0;
144 timeout.tv_sec = 5;
146 CLSET_RETRY_TIMEOUT, (char *)&timeout);
/osnet-11/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;
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dmenu.h96 void grub_menu_set_timeout (int timeout);
H A Dmenu_viewer.h34 void (*print_timeout) (int timeout, void *data);

Completed in 2331 milliseconds

12345678910