HomeSort by: relevance | last modified time | path
    Searched refs:timeout (Results 1 - 25 of 1668) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/mpl/bind/dist/tests/dns/testdata/resconf/
timeout.conf 12 timeout 10
options-timeout.conf 12 options timeout:1
options.conf 12 options unknown debug timeout:1 ndots:2
resolv.conf 17 timeout 10
19 options unknown debug timeout:1 ndots:2
  /src/external/gpl3/gdb/dist/gdb/testsuite/config/
unix.exp 18 # Set a default timeout to be used for the tests under UNIX, rather than
22 set timeout 60
23 verbose "Timeout is now $timeout seconds" 2
dve.exp 17 set timeout 1000
18 verbose "Timeout is now $timeout seconds" 2
m32r.exp 17 set timeout 120
18 verbose "Timeout is now $timeout seconds" 2
mn10300-eval.exp 17 set timeout 1000
18 verbose "Timeout is now $timeout seconds" 2
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/config/
unix.exp 18 # Set a default timeout to be used for the tests under UNIX, rather than
22 set timeout 60
23 verbose "Timeout is now $timeout seconds" 2
dve.exp 17 set timeout 1000
18 verbose "Timeout is now $timeout seconds" 2
m32r.exp 17 set timeout 120
18 verbose "Timeout is now $timeout seconds" 2
mn10300-eval.exp 17 set timeout 1000
18 verbose "Timeout is now $timeout seconds" 2
  /src/external/bsd/mdocml/dist/
test-nanosleep.c 7 struct timespec timeout; local
9 timeout.tv_sec = 0;
10 timeout.tv_nsec = 100000000; /* 0.1 seconds */
12 if (nanosleep(&timeout, NULL)) {
  /src/external/bsd/jemalloc/dist/test/src/
sleep.c 15 struct timespec timeout; local
18 timeout.tv_sec = 0;
19 timeout.tv_nsec = ns;
21 timeout.tv_sec = 1;
22 timeout.tv_nsec = 0;
24 nanosleep(&timeout, NULL);
  /src/external/bsd/jemalloc.old/dist/test/src/
mq.c 15 struct timespec timeout; local
18 timeout.tv_sec = 0;
19 timeout.tv_nsec = ns;
21 timeout.tv_sec = 1;
22 timeout.tv_nsec = 0;
24 nanosleep(&timeout, NULL);
  /src/sys/stand/efiboot/
efiwatchdog.c 37 efi_set_watchdog(uint32_t timeout, uint64_t code)
39 uefi_call_wrapper(BS->SetWatchdogTimer, 4, timeout, code, 0, NULL);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
gdb1056.exp 38 timeout {
define-prefix.exp 108 timeout {fail "(timeout) define user command: ghi-prefix-cmd"}
111 timeout {fail "(timeout) define user command: ghi-prefix-cmd"}
129 timeout {fail "(timeout) redefine user command: ghi-prefix-cmd"}
132 timeout {fail "(timeout) redefine user command: ghi-prefix-cmd"}
136 timeout {fail "(timeout) redefine user command: ghi-prefix-cmd"
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
gdb1056.exp 38 timeout {
define-prefix.exp 108 timeout {fail "(timeout) define user command: ghi-prefix-cmd"}
111 timeout {fail "(timeout) define user command: ghi-prefix-cmd"}
129 timeout {fail "(timeout) redefine user command: ghi-prefix-cmd"}
132 timeout {fail "(timeout) redefine user command: ghi-prefix-cmd"}
136 timeout {fail "(timeout) redefine user command: ghi-prefix-cmd"
    [all...]
  /src/usr.bin/timeout/
Makefile 2 # $FreeBSD: head/usr.bin/timeout/Makefile 268745 2014-07-16 09:55:36Z bapt $
4 PROG= timeout
  /src/external/ibm-public/postfix/dist/src/util/
timed_connect.c 7 /* connect operation with timeout
12 /* int timed_connect(fd, buf, buf_len, timeout)
16 /* int timeout;
29 /* .IP timeout
69 int timed_connect(int sock, struct sockaddr *sa, int len, int timeout)
75 * Sanity check. Just like with timed_wait(), the timeout must be a
78 if (timeout <= 0)
79 msg_panic("timed_connect: bad timeout: %d", timeout);
93 if (write_wait(sock, timeout) < 0
    [all...]
timed_read.c 7 /* read operation with pre-read timeout
11 /* ssize_t timed_read(fd, buf, len, timeout, context)
15 /* int timeout;
28 /* .IP timeout
63 int timeout, void *unused_context)
75 if (timeout > 0 && read_wait(fd, timeout) < 0)
77 if ((ret = read(fd, buf, len)) < 0 && timeout > 0 && errno == EAGAIN) {
timed_write.c 7 /* write operation with pre-write timeout
11 /* ssize_t timed_write(fd, buf, len, timeout, context)
15 /* int timeout;
28 /* .IP timeout
63 int timeout, void *unused_context)
81 if (timeout > 0 && write_wait(fd, timeout) < 0)
83 if ((ret = write(fd, buf, len)) < 0 && timeout > 0 && errno == EAGAIN) {
  /src/lib/libc/sys/
epoll.c 50 epoll_wait(int epfd, struct epoll_event *events, int maxevents, int timeout)
52 return epoll_pwait(epfd, events, maxevents, timeout, NULL);
56 epoll_pwait(int epfd, struct epoll_event *events, int maxevents, int timeout,
61 if (timeout >= 0) {
62 ts.tv_sec = timeout / 1000;
63 ts.tv_nsec = (timeout % 1000) * 1000000;

Completed in 43 milliseconds

1 2 3 4 5 6 7 8 91011>>