/src/tests/net/can/ |
h_canutils.c | 99 struct timeval tmout; local in function:can_recvfrom 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 in function:can_read 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 in function:ATF_TC_BODY 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 in function:adb_spin 329 for (tmout = 13800; *fp == 0 && tmout >= 10; tmout -= 10) 331 if (*fp == 0 && tmout > 0) 332 delay(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/sys/arch/powerpc/powerpc/ |
powerpc_machdep.c | 574 uint64_t tmout = curcpu()->ci_data.cpu_cc_freq; /* some finite amount of time */ local in function:cpu_ipi_wait 577 while (tmout--) {
|
/src/sys/arch/macppc/dev/ |
adb_direct.c | 1323 int tmout; local in function:adb_op_sync 1346 for (tmout = 13800; !flag && tmout >= 10; tmout -= 10) 1348 if (!flag && tmout > 0) 1349 delay(tmout);
|