HomeSort by: relevance | last modified time | path
    Searched defs:TIMEOUT (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /src/games/sail/
machdep.h 34 #define TIMEOUT 300 /* Sync() timeout in seconds */
  /src/sys/arch/dreamcast/dev/maple/
maplereg.h 42 #define TIMEOUT(n) ((n)<<16)
  /src/usr.sbin/rpc.bootparamd/
test.c 45 /* Default timeout can be changed using clnt_control() */
46 static struct timeval TIMEOUT = {25, 0};
57 xdr_bp_whoami_res, &res, TIMEOUT)) != RPC_SUCCESS) {
  /src/libexec/rpc.sprayd/
sprayd.c 49 #define TIMEOUT 120
90 alarm(TIMEOUT);
  /src/sys/modules/examples/pollpal/
cmd_pollpal.c 46 #define TIMEOUT 10000
92 ret = poll(&fds, 1, TIMEOUT);
100 printf("%d seconds elapsed \n.TIMEOUT.\n",
101 TIMEOUT / 1000);
  /src/usr.sbin/rpc.statd/
test.c 13 /* Default timeout can be changed using clnt_control() */
14 static struct timeval TIMEOUT = {25, 0};
23 &res, TIMEOUT) != RPC_SUCCESS)
36 &res, TIMEOUT) != RPC_SUCCESS)
49 &res, TIMEOUT) != RPC_SUCCESS)
62 &res, TIMEOUT) != RPC_SUCCESS)
75 &res, TIMEOUT) != RPC_SUCCESS)
  /src/external/apache2/llvm/dist/clang/utils/ABITest/layout/
Makefile 10 TIMEOUT := 5
  /src/external/bsd/am-utils/dist/amq/
amq_clnt.c 49 static struct timeval TIMEOUT = {ALLOWED_MOUNT_TIME, 0};
60 (XDRPROC_T_TYPE) xdr_void, &res, TIMEOUT)
77 TIMEOUT) != RPC_SUCCESS) {
93 TIMEOUT) != RPC_SUCCESS) {
110 TIMEOUT)) != RPC_SUCCESS) {
127 TIMEOUT) != RPC_SUCCESS) {
143 (SVC_IN_ARG_TYPE) &res, TIMEOUT) != RPC_SUCCESS) {
158 (SVC_IN_ARG_TYPE) &res, TIMEOUT) != RPC_SUCCESS) {
173 (SVC_IN_ARG_TYPE) &res, TIMEOUT) != RPC_SUCCESS) {
187 (SVC_IN_ARG_TYPE) &res, TIMEOUT) != RPC_SUCCESS)
    [all...]
  /src/external/mpl/bind/dist/bin/tests/system/tsig/
tests_badtime.py 30 TIMEOUT = 10
38 def timeout(): function
39 return time.time() + TIMEOUT
43 sock = socket.create_connection((host, port), timeout=10)
65 dns.query.send_tcp(sock, wire, timeout())
67 dns.query.receive_tcp(sock, timeout(), keyring=keyring)
  /src/libexec/talkd/
talkd.c 80 #define TIMEOUT 30
83 static void timeout(int);
116 signal(SIGALRM, timeout);
117 alarm(TIMEOUT);
147 timeout(int n) function
153 alarm(TIMEOUT);
  /src/external/mpl/bind/dist/bin/tests/system/tcp/
tests_tcp.py 31 TIMEOUT = 10
39 def timeout(): function
40 return time.time() + TIMEOUT
44 sock = socket.create_connection((host, port), timeout=10)
52 dns.query.send_tcp(sock, msg, timeout())
53 dns.query.receive_tcp(sock, timeout())
65 dns.query.send_tcp(sock, msg, timeout())
66 dns.query.receive_tcp(sock, timeout())
74 dns.query.send_tcp(sock, msg, timeout())
75 dns.query.receive_tcp(sock, timeout())
    [all...]
  /src/sys/arch/arm/xilinx/
zynq_usb.c 236 aprint_error_dev(sc->sc_hsc.sc_dev, "%s: timeout\n", __func__);
258 aprint_error_dev(sc->sc_hsc.sc_dev, "%s: timeout\n", __func__);
264 #define TIMEOUT 100000
271 ulpi_wakeup(sc, TIMEOUT);
276 data = ulpi_wait(sc, TIMEOUT);
286 ulpi_wakeup(sc, TIMEOUT);
291 ulpi_wait(sc, TIMEOUT);
346 aprint_error_dev(hsc->sc_dev, "reset timeout (%x)\n", reg);
  /src/sys/dev/mvme/
lpt_mvme.c 106 #define TIMEOUT hz*16 /* wait up to 16 seconds for a ready */
198 if (spin >= TIMEOUT) {
280 if (tic > TIMEOUT)
281 tic = TIMEOUT;
  /src/sys/dev/podulebus/
hcsc.c 226 #define TIMEOUT 1000000
233 for (i = TIMEOUT; i > 0; i--) {
243 printf("%s: ready timeout\n", device_xname(sc->sc_dev));
254 for (timo = TIMEOUT; timo; timo--) {
261 printf("%s: pdma not_req timeout\n", device_xname(sc->sc_dev));
354 for (i = TIMEOUT; i > 0; i--) {
363 printf("%s: timeout waiting for final SCI_DSR_DREQ.\n",
  /src/usr.sbin/rpc.lockd/
test.c 19 /* Default timeout can be changed using clnt_control() */
20 static struct timeval TIMEOUT = {0, 0};
30 &res, TIMEOUT);
45 &res, TIMEOUT);
63 &res, TIMEOUT);
79 &res, TIMEOUT);
95 &res, TIMEOUT);
111 &res, TIMEOUT);
127 NULL, TIMEOUT);
144 &res, TIMEOUT);
    [all...]
  /src/usr.sbin/spray/
spray.c 58 static struct timeval TIMEOUT = { 25, 0 };
135 * For some strange reason, RPC 4.0 sets the default timeout,
145 if (clnt_call(cl, SPRAYPROC_CLEAR, xdr_void, NULL, xdr_void, NULL, TIMEOUT) != RPC_SUCCESS) {
165 if (clnt_call(cl, SPRAYPROC_GET, xdr_void, NULL, xdr_spraycumul, &host_stats, TIMEOUT) != RPC_SUCCESS) {
  /src/external/mpl/bind/dist/bin/tests/system/timeouts/
tests_tcp_timeouts.py 33 TIMEOUT = 10
43 def timeout(): function
44 return time.time() + TIMEOUT
49 # The initial timeout is 2.5 seconds, so this should timeout
60 dns.query.send_tcp(sock, msg, timeout())
61 dns.query.receive_tcp(sock, timeout())
69 # The idle timeout is 5 seconds, so the third message should fail
77 dns.query.send_tcp(sock, msg, timeout())
78 dns.query.receive_tcp(sock, timeout())
    [all...]
  /src/sbin/efi/
setvar.c 49 #define TIMEOUT "Timeout"
309 set_timeout(int fd, uint16_t timeout)
314 efi_var_init(&ev, TIMEOUT,
320 ev.data = &timeout;
321 ev.datasize = sizeof(timeout);
323 printf("set Timeout = %u seconds\n", timeout);
338 rv = delete_variable(fd, TIMEOUT);
  /src/sys/arch/arm/imx/
imxusb.c 273 aprint_error_dev(hsc->sc_dev, "%s: timeout\n", __func__);
295 aprint_error_dev(hsc->sc_dev, "%s: timeout\n", __func__);
300 #define TIMEOUT 100000
307 ulpi_wakeup(sc, TIMEOUT);
312 reg = ulpi_wait(sc, TIMEOUT);
322 ulpi_wakeup(sc, TIMEOUT);
327 ulpi_wait(sc, TIMEOUT);
387 aprint_error_dev(hsc->sc_dev, "reset timeout (%x)\n", reg);
  /src/sys/dev/ic/
lpt.c 78 #define TIMEOUT hz*16 /* wait up to 16 seconds for a ready */
198 if (spin >= TIMEOUT) {
315 if (tic > TIMEOUT)
316 tic = TIMEOUT;
  /src/usr.bin/lock/
lock.c 52 * Timeout interval is by default TIMEOUT, it can be changed with
81 #define TIMEOUT 15
90 static struct timeval timeout; variable in typeref:struct:timeval
93 static int notimeout; /* no timeout at all */
94 static long nexttime; /* keep the timeout time */
122 sectimeout = TIMEOUT;
135 err(1, "illegal timeout value: %s", optarg);
137 errx(1, "illegal timeout value: %s", optarg);
139 errx(1, "too large timeout value: %ld"
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/
ia64-sigill.c 35 #define TIMEOUT (gettid () == getpid() ? 10 : 15)
71 while (now.tv_sec - start.tv_sec < TIMEOUT);
234 while (now.tv_sec - start.tv_sec < TIMEOUT);
watchthreads-reorder.c 35 #define TIMEOUT (gettid () == getpid() ? 10 : 15)
80 while (now.tv_sec - start.tv_sec < TIMEOUT);
243 while (now.tv_sec - start.tv_sec < TIMEOUT);
  /src/external/mit/libuv/dist/test/
test-loop-handles.c 75 #define TIMEOUT 100
311 r = uv_timer_start(&timer_handle, timer_cb, TIMEOUT, TIMEOUT);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.threads/
ia64-sigill.c 35 #define TIMEOUT (gettid () == getpid() ? 10 : 15)
71 while (now.tv_sec - start.tv_sec < TIMEOUT);
234 while (now.tv_sec - start.tv_sec < TIMEOUT);

Completed in 117 milliseconds

1 2 3