Searched refs:timo (Results 76 - 89 of 89) sorted by relevance

1234

/freebsd-11-stable/sys/dev/ipmi/
H A Dipmi.c559 int timo)
562 return (sc->ipmi_driver_request(sc, req, timo));
558 ipmi_submit_driver_request(struct ipmi_softc *sc, struct ipmi_request *req, int timo) argument
/freebsd-11-stable/sys/netgraph/bluetooth/socket/
H A Dng_btsocket_sco.c1244 callout_init(&pcb->timo, 1);
1921 callout_reset(&pcb->timo, bluetooth_sco_rtx_timeout(),
1938 callout_stop(&pcb->timo);
H A Dng_btsocket_l2cap.c2069 callout_init_mtx(&pcb->timo, &pcb->pcb_mtx, 0);
2817 callout_reset(&pcb->timo, bluetooth_l2cap_ertx_timeout(),
2834 callout_stop(&pcb->timo);
H A Dng_btsocket_rfcomm.c437 callout_init_mtx(&pcb->timo, &pcb->pcb_mtx, 0);
3458 callout_reset(&pcb->timo, ng_btsocket_rfcomm_timo * hz,
3474 callout_stop(&pcb->timo);
/freebsd-11-stable/sys/net/altq/
H A Daltq_subr.c987 int timo; local
991 timo = hz; /* 1 sec */
992 (void)tsleep(&wait, PWAIT | PCATCH, "init_machclk", timo);
/freebsd-11-stable/sys/dev/digi/
H A Ddigi.c203 digi_delay(struct digi_softc *sc, const char *txt, u_long timo) argument
206 DELAY(timo * 1000000 / hz);
208 tsleep(sc, PUSER | PCATCH, txt, timo);
/freebsd-11-stable/sys/dev/sound/pcm/
H A Ddsp.c2976 int timo = hz * 5/1000; local
2977 if (timo < 1)
2978 timo = 1;
2990 PRIBIO | PCATCH, "pcmsg", timo);
/freebsd-11-stable/sys/dev/isp/
H A Dispreg.h461 #define MBSINIT(mbxp, code, loglev, timo) \
469 (mbxp)->timeout = timo
/freebsd-11-stable/sys/dev/ntb/ntb_hw/
H A Dntb_hw_intel.c1916 sbintime_t timo, poll_ts; local
1918 timo = NTB_HB_TIMEOUT * hz;
1919 poll_ts = ntb->last_ts + timo;
1926 timo = poll_ts - ticks;
1940 callout_reset(&ntb->heartbeat_timer, timo, atom_link_hb, ntb);
/freebsd-11-stable/sys/dev/sio/
H A Dsio.c2310 int timo; local
2317 timo = 100000;
2319 != (LSR_TSRE | LSR_TXRDY) && --timo != 0)
/freebsd-11-stable/sys/kern/
H A Dkern_sysctl.c103 #define SYSCTL_SLEEP(ch, wmesg, timo) \
104 rm_sleep(ch, &sysctllock, 0, wmesg, timo)
H A Dkern_sig.c1254 int error, sig, timo, timevalid = 0; local
1313 timo = tvtohz(&tv);
1315 timo = 0;
1323 error = msleep(ps, &p->p_mtx, PPAUSE|PCATCH, "sigwait", timo);
/freebsd-11-stable/sys/pc98/cbus/
H A Dsio.c3472 int timo; local
3479 timo = 100000;
3481 != (LSR_TSRE | LSR_TXRDY) && --timo != 0)
/freebsd-11-stable/sys/vm/
H A Dvm_map.c685 _vm_map_unlock_and_wait(vm_map_t map, int timo, const char *file, int line) argument
694 timo));

Completed in 308 milliseconds

1234