Home
last modified time | relevance | path

Searched refs:timeout (Results 1 – 25 of 933) sorted by path

12345678910>>...38

/illumos-gate/usr/src/
H A DMakefile.smatch31 SMATCH_ARGS += --timeout=0
/illumos-gate/usr/src/boot/
H A DMakefile.inc65 SMATCH_ARGS = --timeout=0
/illumos-gate/usr/src/boot/common/
H A Dboot.c169 autoboot(int timeout, char *prompt) in autoboot() argument
179 if (timeout == -1) { in autoboot()
180 timeout = 10; in autoboot()
183 timeout = strtol(cp, &ep, 0); in autoboot()
185 timeout = 10; /* Unparseable? Set default! */ in autoboot()
202 if (timeout >= 0) { in autoboot()
204 when = otime + timeout; /* when to boot */ in autoboot()
H A Dbootstrap.h61 int autoboot(int timeout, char *prompt);
H A Dcommands.c392 int timeout; in command_read() local
399 timeout = -1; in command_read()
409 timeout = strtol(optarg, &cp, 0); in command_read()
428 if (timeout >= 0) { in command_read()
429 when = time(NULL) + timeout; in command_read()
H A Dhelp.common341 timeout).
/illumos-gate/usr/src/boot/efi/libefi/
H A Definet.c171 efinet_get(struct iodesc *desc, void **pkt, time_t timeout) in efinet_get() argument
192 while ((getsecs() - t) < timeout) { in efinet_get()
/illumos-gate/usr/src/boot/forth/
H A Dmenu.4th558 : menu-timeout-update ( N -- )
594 \ so we will decrement our "timeout" (really a
596 \ fast) and update our timeout display.
614 menu_timeout @ menu-timeout-update
617 \ We've reached the end of the timeout
638 \ An actual key was pressed (if the timeout is running,
644 \ clear screen of timeout message
645 0 menu-timeout-update
940 1 menu_timeout_enabled ! ( enable automatic timeout )
948 \ disable timeout if "NO", else use default
[all …]
H A Dmenu.rc210 \ customize the timeout; default is 10-seconds)
/illumos-gate/usr/src/boot/i386/gptzfsboot/
H A Dsio.S68 jz sio_putc.2 # If timeout
/illumos-gate/usr/src/boot/i386/libi386/
H A Dpxe.c587 pxe_netif_get(struct iodesc *desc __unused, void **pkt, time_t timeout) in pxe_netif_get() argument
596 while ((getsecs() - t) < timeout) { in pxe_netif_get()
/illumos-gate/usr/src/cmd/ast/libshell/common/tests/
H A Dsun_solaris_builtin_tail.sh55 float timeout=$2
59 (( timeout=timeout/STEP ))
61 for (( i=0 ; i < timeout ; i+=STEP )) ; do
/illumos-gate/usr/src/cmd/backup/dump/
H A Ddumpoptr.c19 static unsigned int timeout; /* current timeout */ variable
91 timeout = 0; in query_once()
139 timeout = 0; in query_once()
187 if (timeout) { in alarmcatch()
191 timeout += 120; in alarmcatch()
197 (void) alarm(timeout); in alarmcatch()
/illumos-gate/usr/src/cmd/bhyve/test/tests/mevent/
H A Dtestlib.c36 start_test(const char *argv0, uint32_t timeout) in start_test() argument
51 alarm(timeout); in start_test()
/illumos-gate/usr/src/cmd/bnu/
H A DDevconfig26 # for STREAMS devices, and timeout configuration.
H A Duucico.c92 extern void intrEXIT(), onintr(), timeout();
320 (void) signal(SIGALRM, timeout);
582 (void) signal(SIGALRM, timeout);
732 (void) signal(SIGALRM, timeout);
865 timeout() in timeout() function
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm_loader.c904 char *timeout = "-1"; in list_menu_entry() local
907 timeout = ptr; in list_menu_entry()
910 (void) printf("Timeout: %s\n", timeout); in list_menu_entry()
912 (void) printf("%s\n", timeout); in list_menu_entry()
/illumos-gate/usr/src/cmd/cmd-inet/etc/
H A Dipqosconf.2.sample131 timeout 60000
/illumos-gate/usr/src/cmd/cmd-inet/lib/nwamd/
H A DREADME320 is activated above such a link, and that NCU uses DHCP, a timeout
/illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/
H A DREADME121 A special kind of "event" is a timeout. Since there are many timers
133 timer which will next fire, and use this to set its timeout value in
134 its call to poll(2). If poll(2) returns due to a timeout, the event
279 One of the main purposes of the `ipc_action' object is to timeout user
280 events. When the user specifies a timeout value as an argument to
281 ifconfig, he is specifying an `ipc_action' timeout; in other words,
308 The send_pkt() function handles the details of packet timeout and
314 to place a cap on the next timeout; this is done for DHCPv6 in
H A DREADME.v6565 that's undergoing renewal. It's a simple progression (on timeout)
591 - At each retransmit timeout, we should check to see if there are
H A Dipc_action.c83 if (iareq->ia_request->timeout == DHCP_IPC_WAIT_DEFAULT) in ipc_action_start()
84 iareq->ia_request->timeout = DHCP_IPC_DEFAULT_WAIT; in ipc_action_start()
86 if (iareq->ia_request->timeout == DHCP_IPC_WAIT_FOREVER) { in ipc_action_start()
90 iareq->ia_request->timeout, ipc_action_timeout, dsmp); in ipc_action_start()
H A Dscript_handler.c70 static time_t timeout; variable
87 if (now < timeout) in sigalarm_handler()
88 (void) alarm(timeout - now); in sigalarm_handler()
105 timeout = time(NULL) + SCRIPT_TIMEOUT_GRACE; in sigterm_handler()
152 timeout = time(NULL) + SCRIPT_TIMEOUT; in run_script()
172 if (now >= timeout) { in run_script()
180 timeout = now + SCRIPT_TIMEOUT_GRACE; in run_script()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/chat/
H A Dchat.c182 int timeout = DEFAULT_CHAT_TIMEOUT; variable
316 timeout = atoi(arg);
1139 timeout = atoi(s);
1141 if (timeout <= 0)
1142 timeout = DEFAULT_CHAT_TIMEOUT;
1145 logf("timeout set to %d seconds", timeout);
1282 alarm(timeout); alarmed = 0;
1380 alarm(timeout);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dftp.c88 static ssize_t timedread(int fd, void *buf, size_t maxlen, int timeout);
120 bufcnt = timedread(fd, buf, bufsize, timeout); in fdio_fillbuf()
146 timedread(int fd, void *buf, size_t size, int timeout) in timedread() argument
152 if (!timeout) in timedread()
155 tv.tv_sec = (time_t)timeout; in timedread()
262 if (timeout && setsockopt(s, IPPROTO_TCP, TCP_ABORT_THRESHOLD, in hookup()
1237 while ((c = timedread(infd, buf, FTPBUFSIZ, timeout)) > 0) { in recvrequest()
1487 if (timeout && setsockopt(data, IPPROTO_TCP, in initconn()
1616 if (timeout && setsockopt(data, IPPROTO_TCP, TCP_ABORT_THRESHOLD, in initconn()

12345678910>>...38