HomeSort by: relevance | last modified time | path
    Searched defs:tmo (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/lib/libsa/
net.c 91 saseconds_t tmo, tleft; local in function:sendrecv
98 tmo = MINTMO;
104 if (tmo >= MAXTMO) {
110 tleft = tmo;
111 tmo <<= 1;
112 if (tmo > MAXTMO)
113 tmo = MAXTMO;
117 while ((getsecs() - t) < tmo)
  /src/sys/arch/sun3/dev/
si.c 384 int tmo; local in function:si_dma_poll
397 tmo = POLL_TIMO;
401 if (--tmo <= 0) {
410 POLL_TIMO - tmo);
si_obio.c 440 int resid, ntrans, tmo, udc_cnt; local in function:si_obio_dma_stop
474 tmo = 200000; /* X10 = 2 sec. */
478 if (--tmo <= 0) {
si_sebuf.c 672 int tmo; local in function:se_dma_poll
685 tmo = POLL_TIMO;
689 if (--tmo <= 0) {
698 POLL_TIMO - tmo);
if_ie.c 1046 int tmo; local in function:cmd_and_wait
1052 tmo = 10;
1053 while (scb->ie_command && --tmo)
1072 tmo = 36900;
1081 while (((cc->ie_cmd_status & mask) == 0) && --tmo)
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_ib.c 364 long tmo; local in function:amdgpu_ib_ring_tests
379 tmo = tmo_mm;
381 tmo = tmo_gfx;
383 r = amdgpu_ring_test_ib(ring, tmo);
amdgpu_device.c 3844 long r = 1, tmo; local in function:amdgpu_device_recover_vram
3847 tmo = msecs_to_jiffies(8000);
3849 tmo = msecs_to_jiffies(100);
3866 tmo = dma_fence_wait_timeout(fence, false, tmo);
3869 if (tmo == 0) {
3872 } else if (tmo < 0) {
3873 r = tmo;
3883 tmo = dma_fence_wait_timeout(fence, false, tmo);
    [all...]
  /src/tests/lib/libc/gen/
t_sleep.c 153 int tmo; local in function:do_kevent
157 tmo = KEVNT_TIMEOUT;
165 tmo/1000 < delay->tv_sec && tmo/500 > delay->tv_sec)
168 fprintf(stderr, "kevent: set EVFILT_TIMER tmo=%d\n", tmo);
169 EV_SET(&ktimer, 1, EVFILT_TIMER, EV_ADD, 0, tmo, 0);
185 if (delay->tv_sec * BILLION + delay->tv_nsec > tmo * MILLION)
  /src/usr.sbin/sysinst/
run.c 421 struct timeval tmo; local in function:launch_subwin
532 tmo.tv_sec = flags & RUN_SILENT ? 20 : 2;
533 tmo.tv_usec = 0;
534 i = select(FD_SETSIZE, &read_fd_set, NULL, NULL, &tmo);
  /src/sys/arch/sparc/dev/
sw.c 589 int tmo, csr_mask, csr; local in function:sw_dma_poll
598 tmo = 50000; /* X100 = 5 sec. */
603 if (--tmo <= 0) {
  /src/sys/dev/vme/
si.c 561 int tmo, csr_mask, csr; local in function:si_dma_poll
570 tmo = 50000; /* X100 = 5 sec. */
575 if (--tmo <= 0) {
  /src/sys/dev/ic/
tpm.c 88 tpm_tmotohz(int tmo)
92 tv.tv_sec = tmo / 1000;
93 tv.tv_usec = 1000 * (tmo % 1000);
374 tpm_waitfor(struct tpm_softc *sc, uint8_t bits, int tmo, wchan_t chan)
379 to = tpm_tmotohz(tmo);
457 int tmo; local in function:tpm_tis12_probe
469 tmo = TPM_ACCESS_TMO; /* Milliseconds. */
472 (TPM_ACCESS_VALID | TPM_ACCESS_ACTIVE_LOCALITY) && tmo--) {
sunscpal.c 287 int tmo; local in function:sunscpal_dma_poll
294 tmo = POLL_TIMO;
298 if (--tmo <= 0) {
306 SUNSCPAL_TRACE("sunscpal_dma_poll: waited %d\n", POLL_TIMO - tmo);
cissreg.h 485 u_int16_t tmo; /* 16: timeout in seconds */ member in struct:ciss_cmd
  /src/sys/dev/scsipi/
st.c 1709 int tmo; local in function:st_erase
1721 tmo = ST_SPC_TIME;
1723 tmo = ST_IO_TIME;
1734 ST_RETRIES, tmo, NULL, flags);
ch.c 1123 int tmo; local in function:ch_ielem
1144 tmo = sc->sc_counts[CHET_MT] +
1148 tmo *= 5 * 60 * 1000;
1149 tmo += (10 * 60 * 1000);
1152 CHRETRIES, tmo, NULL, XS_CTL_IGNORE_ILLEGAL_REQUEST));
  /src/sbin/fdisk/
fdisk.c 720 int tmo; local in function:print_s0
725 tmo = le16toh(mboot.mbr_bootsel.mbrbs_timeo);
726 if (tmo == 0xffff)
730 (10 * tmo + 9) / 182);
1533 int tmo; local in function:configure_bootsel
1553 tmo = le16toh(mbs->mbrbs_timeo);
1554 tmo = tmo == 0xffff ? -1 : (10 * tmo + 9) / 182;
1555 tmo = decimal("Timeout value (0 to 3600 seconds, -1 => never)"
2664 unsigned int tmo; local in function:validate_bootsel
    [all...]

Completed in 58 milliseconds