HomeSort by relevance Sort by last modified time
    Searched refs:TIMEOUT (Results 1 - 25 of 61) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/sh/
timeout.h 31 #define TIMEOUT 0 /* seconds elapsing before log-off (normal) */
  /onnv/onnv-gate/usr/src/lib/libnsl/yp/
yp_b_clnt.c 46 /* Default timeout can be changed using clnt_control() */
47 static struct timeval TIMEOUT = { 25, 0 };
56 argp, xdr_void, &res, TIMEOUT) != RPC_SUCCESS)
69 (char *)&res, TIMEOUT) != RPC_SUCCESS)
82 TIMEOUT) != RPC_SUCCESS)
  /onnv/onnv-gate/usr/src/cmd/krb5/slave/
kpropd_rpc.c 14 * Default timeout can be changed using clnt_control()
16 static struct timeval TIMEOUT = { 25, 0 };
29 TIMEOUT) != RPC_SUCCESS) {
46 TIMEOUT) != RPC_SUCCESS) {
  /onnv/onnv-gate/usr/src/lib/libidmap/common/
directory_rpc_clnt.c 38 /* Default timeout can be changed using clnt_control() */
39 static struct timeval TIMEOUT = { 25, 0 };
56 TIMEOUT));
utils.c 42 static struct timeval TIMEOUT = { 25, 0 };
128 TIMEOUT);
  /onnv/onnv-gate/usr/src/lib/krb5/kadm5/clnt/
client_rpc.c 33 /* Default timeout can be changed using clnt_control() */
34 static struct timeval TIMEOUT = { 25, 0 };
48 TIMEOUT) != RPC_SUCCESS) {
66 TIMEOUT) != RPC_SUCCESS) {
84 TIMEOUT) != RPC_SUCCESS) {
102 TIMEOUT) != RPC_SUCCESS) {
120 TIMEOUT) != RPC_SUCCESS) {
138 TIMEOUT) != RPC_SUCCESS) {
156 TIMEOUT) != RPC_SUCCESS) {
174 TIMEOUT) != RPC_SUCCESS)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/ip/
get.ipv4remote.pl 43 my $TIMEOUT = 3; # connection timeout
90 Timeout => $TIMEOUT,
get.ipv6remote.pl 43 my $TIMEOUT = 3; # connection timeout
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
Time.pm 10 use vars qw($VERSION @ISA @EXPORT_OK $TIMEOUT);
22 $TIMEOUT = 120;
26 my($pname,$pnum,$host,$proto,$timeout) = @_;
49 $timeout = $TIMEOUT
50 unless defined $timeout;
52 IO::Select->new($me)->can_read($timeout)
120 =item inet_time ( [HOST [, PROTOCOL [, TIMEOUT]]])
128 =item inet_daytime ( [HOST [, PROTOCOL [, TIMEOUT]]])
  /onnv/onnv-gate/usr/src/uts/common/sys/
strtty.h 90 #define TIMEOUT 01 /* Delay timeout in progress */
102 #define RTO 010000 /* Raw Timeout */
  /onnv/onnv-gate/usr/src/pkgdefs/common_files/
i.deflogin 82 PATH SUPATH TIMEOUT UMASK SYSLOG SLEEPTIME DISABLETIME \
  /onnv/onnv-gate/usr/src/cmd/rpcsvc/
spray.c 155 * A special call, where the TIMEOUT is 0. So, every call times-out.
157 static struct timeval TIMEOUT = { 0, 0 };
165 xdr_void, NULL, TIMEOUT));
  /onnv/onnv-gate/usr/src/grub/grub-0.97/netboot/
grub.h 25 #ifndef TIMEOUT
26 #define TIMEOUT (10*TICKS_PER_SEC)
91 extern int await_reply P((reply_t reply, int ival, void *ptr, long timeout));
  /onnv/onnv-gate/usr/src/cmd/picl/plugins/sun4u/littleneck/conf/
platsvcd.conf 37 * TIMEOUT <seconds>
55 TIMEOUT 180
  /onnv/onnv-gate/usr/src/cmd/ypcmd/
ypset.c 59 #define TIMEOUT 30 /* Total seconds for timeout */
67 static struct timeval timeout = { variable in typeref:struct:timeval
68 TIMEOUT, /* Seconds */
305 timeout);
yppoll.c 61 #define TIMEOUT 30 /* Total seconds for timeout */
257 struct timeval timeout; local
268 timeout.tv_sec = TIMEOUT;
269 timeout.tv_usec = 0;
276 (caddr_t)&mresp, timeout) == RPC_SUCCESS) {
280 (xdrproc_t)xdr_ypresp_order, (char *)&oresp, timeout);
  /onnv/onnv-gate/usr/src/cmd/picl/plugins/sun4u/cherrystone/conf/
platsvcd.conf 36 * TIMEOUT <seconds>
54 TIMEOUT 180
  /onnv/onnv-gate/usr/src/cmd/picl/plugins/sun4u/sebring/conf/
platsvcd.conf 36 * TIMEOUT <seconds>
54 TIMEOUT 180
  /onnv/onnv-gate/usr/src/lib/lvm/libmeta/common/
meta_mn_comm.c 120 /* Default timeout can be changed using clnt_control() */
121 static struct timeval TIMEOUT = { 25, 0 };
134 (xdrproc_t)xdr_md_mn_result_t, (caddr_t)clnt_res, TIMEOUT);
155 (xdrproc_t)xdr_int, (caddr_t)clnt_res, TIMEOUT);
176 (xdrproc_t)xdr_int, (caddr_t)clnt_res, TIMEOUT);
197 (xdrproc_t)xdr_int, (caddr_t)clnt_res, TIMEOUT);
218 (xdrproc_t)xdr_int, (caddr_t)clnt_res, TIMEOUT);
239 (xdrproc_t)xdr_int, (caddr_t)clnt_res, TIMEOUT);
260 (xdrproc_t)xdr_int, (caddr_t)clnt_res, TIMEOUT);
281 (xdrproc_t)xdr_int, (caddr_t)clnt_res, TIMEOUT);
667 struct timeval timeout; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
Select.pm 102 my $timeout = shift;
105 defined($r) && (select($r,undef,undef,$timeout) > 0)
113 my $timeout = shift;
116 defined($w) && (select(undef,$w,undef,$timeout) > 0)
124 my $timeout = shift;
127 defined($e) && (select(undef,undef,$e,$timeout) > 0)
251 @ready = $s->can_read($timeout);
301 =item can_read ( [ TIMEOUT ] )
303 Return an array of handles that are ready for reading. C<TIMEOUT> is
305 seconds, possibly fractional. If C<TIMEOUT> is not given and an
    [all...]
Poll.pm 72 my($self,$timeout) = @_;
85 my $ret = @poll ? _poll(defined($timeout) ? $timeout * 1000 : -1,@poll) : 0;
147 $poll->poll($timeout);
169 =item poll ( [ TIMEOUT ] )
171 Call the system level poll routine. If TIMEOUT is not specified then the
  /onnv/onnv-gate/usr/src/lib/libcmd/common/
tail.c 66 "[L:log?When a \b--forever\b file times out via \b--timeout\b, verify that "
72 "[s:silent?Don't warn about timeout expiration and log file changes.]"
73 "[t:timeout?Stop checking after \atimeout\a elapses with no additional "
75 "each file operand. There is no timeout by default. The default "
79 "interpreted as seconds. The supported suffixes are:]:[timeout]{"
118 #define TIMEOUT (1<<10)
417 unsigned long timeout = 0; local
514 flags |= TIMEOUT;
515 timeout = strelapsed(opt_info.arg, &s, 1);
597 if ((flags & (FOLLOW|TIMEOUT)) == TIMEOUT
    [all...]
  /onnv/onnv-gate/usr/src/lib/passwdutil/
npd_clnt.c 253 /* Default timeout can be changed using clnt_control() */
254 static struct timeval TIMEOUT = { 55, 0 };
368 TIMEOUT) != RPC_SUCCESS) {
469 TIMEOUT) != RPC_SUCCESS) {
505 TIMEOUT) != RPC_SUCCESS) {
  /onnv/onnv-gate/usr/src/cmd/fs.d/cachefs/umount/
umount.c 339 static struct timeval TIMEOUT = { 60*60, 0 };
360 clnt_control(clnt, CLSET_TIMEOUT, (char *)&TIMEOUT);
  /onnv/onnv-gate/usr/src/cmd/lp/model/netpr/
net.c 46 #define TIMEOUT 1
134 int timeout; local
143 timeout = seed = seed ? seed : 10;
148 syslog(LOG_DEBUG, "xfer_file: timeout = %d", timeout);
156 if (timeout < (seed * 4)) {
157 (void) sleep(timeout);
158 timeout *= 2;
159 } else if (timeout == (seed * 4)) {
160 (void) sleep(timeout);
200 int timeout; local
322 int timeout = 1; local
    [all...]

Completed in 3779 milliseconds

1 2 3