HomeSort by: relevance | last modified time | path
    Searched refs:tmout (Results 1 - 14 of 14) sorted by relevancy

  /src/tests/net/can/
h_canutils.c 99 struct timeval tmout; local
106 tmout.tv_sec = 1;
107 tmout.tv_usec = 0;
108 rv = rump_sys_select(s + 1, &rfds, NULL, NULL, &tmout);
137 struct timeval tmout; local
144 tmout.tv_sec = 1;
145 tmout.tv_usec = 0;
146 rv = rump_sys_select(s + 1, &rfds, NULL, NULL, &tmout);
t_can.c 613 struct timeval tmout; local
659 tmout.tv_sec = 1;
660 tmout.tv_usec = 0;
661 rv1 = rump_sys_select(MAX(s1,s2) + 1, &rfds, NULL, NULL, &tmout);
  /src/sys/arch/mac68k/dev/
adb.c 327 int tmout; local
329 for (tmout = 13800; *fp == 0 && tmout >= 10; tmout -= 10)
331 if (*fp == 0 && tmout > 0)
332 delay(tmout);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sync/
event.d 227 * tmout = the maximum time to wait
232 bool wait(Duration tmout)
241 while (tmout > maxWaitMillis)
246 tmout -= maxWaitMillis;
248 auto ms = cast(uint)(tmout.total!"msecs");
261 if (tmout == Duration.max)
270 mktspec(t, tmout);
  /src/crypto/external/bsd/heimdal/dist/lib/kadm5/
ipropd_common.c 108 struct timeval tmout; local
219 tmout.tv_sec = 1;
220 tmout.tv_usec = 0;
224 (void) select(fds2[0] + 1, &readset, NULL, NULL, &tmout);
  /src/lib/libutil/
ttymsg.c 59 * waiting up to tmout seconds. Returns pointer to error string on unexpected
64 ttymsg(struct iovec *iov, int iovcnt, const char *line, int tmout)
180 /* wait at most tmout seconds */
185 (void)alarm((u_int)tmout);
  /src/tests/lib/libc/stdio/
h_intr.c 60 int tmout; /* alarm timeout */ member in struct:options
161 alarm_fn(opts.tmout);
430 " [-p TYPE] [-t TMOUT] -c CMD FILE...\n",
441 fprintf(fp, " -t TMOUT Interrupt writing to CMD every (%d) ms\n",
442 opts.tmout);
466 opts.tmout = DEF_MS; /* 100ms */
529 opts.tmout = i;
  /src/external/gpl3/gdb/dist/readline/readline/
input.c 681 struct timeval tmout; local
688 tmout.tv_sec = sec;
689 tmout.tv_usec = usec;
695 if (timeout == NULL || timercmp (&tmout, timeout, <))
696 timeout = &tmout;
  /src/external/gpl3/gdb.old/dist/readline/readline/
input.c 681 struct timeval tmout; local
688 tmout.tv_sec = sec;
689 tmout.tv_usec = usec;
695 if (timeout == NULL || timercmp (&tmout, timeout, <))
696 timeout = &tmout;
  /src/sys/arch/macppc/dev/
adb_direct.c 1323 int tmout; local
1346 for (tmout = 13800; !flag && tmout >= 10; tmout -= 10)
1348 if (!flag && tmout > 0)
1349 delay(tmout);
  /src/external/bsd/libpcap/dist/
pcap-bpf.c 347 long expire, tmout; local
365 tmout = p->opt.timeout;
366 if (tmout)
370 tmout = expire - TSTOMILLI(&cur);
372 if (tmout <= 0) {
393 if (tmout != 0) {
394 tv.tv_sec = tmout / 1000;
395 tv.tv_usec = (tmout * 1000) % 1000000;
  /src/crypto/external/bsd/heimdal/dist/kdc/
connect.c 903 struct timeval tmout; local
936 tmout.tv_sec = TCP_TIMEOUT;
937 tmout.tv_usec = 0;
938 switch(select(max_fd + 1, &fds, 0, 0, &tmout)){
  /src/sys/arch/powerpc/powerpc/
powerpc_machdep.c 626 uint64_t tmout = curcpu()->ci_data.cpu_cc_freq; /* some finite amount of time */ local
629 while (tmout--) {
  /src/external/public-domain/sqlite/dist/
sqlite3.c 66581 int tmout = pWal->db->busyTimeout; local
66593 int tmout = 0; local
179877 int tmout = db->busyTimeout; local
    [all...]

Completed in 247 milliseconds