Searched refs:polltime (Results 1 - 9 of 9) sorted by relevance

/freebsd-current/sys/dev/ofw/
H A Dofw_console.c62 static int polltime; variable
115 polltime = hz / OFWCONS_POLL_HZ;
116 if (polltime < 1)
117 polltime = 1;
119 callout_reset(&ofw_timer, polltime, ofw_timeout, tp);
158 callout_schedule(&ofw_timer, polltime);
/freebsd-current/sys/dev/cfe/
H A Dcfe_console.c63 static int polltime; variable
98 polltime = hz / CFECONS_POLL_HZ;
99 if (polltime < 1)
100 polltime = 1;
101 callout_reset(&cfe_timer, polltime, cfe_timeout, tp);
147 callout_reset(&cfe_timer, polltime, cfe_timeout, tp);
/freebsd-current/share/examples/ses/srcs/
H A Dsesd.c59 int fd, polltime, dev, nodaemon, clear, c; local
68 polltime = 30;
79 polltime = atoi(optarg);
173 sleep(polltime);
/freebsd-current/sys/powerpc/mambo/
H A Dmambo_console.c56 static int polltime; variable
89 polltime = 1;
92 callout_reset(&mambo_callout, polltime, mambo_timeout, NULL);
123 callout_reset(&mambo_callout, polltime, mambo_timeout, NULL);
/freebsd-current/sys/riscv/riscv/
H A Driscv_console.c84 static int polltime; variable
127 polltime = 1;
130 callout_reset(&riscv_callout, polltime, riscv_timeout, NULL);
166 callout_reset(&riscv_callout, polltime, riscv_timeout, NULL);
/freebsd-current/sys/dev/dcons/
H A Ddcons_os.c230 int i, c, polltime; local
245 polltime = hz;
247 polltime /= poll_hz;
248 callout_reset(&dcons_callout, polltime, dcons_timeout, tp);
393 int polltime; local
398 polltime = hz / poll_hz;
399 callout_reset(&dcons_callout, polltime, dcons_timeout, NULL);
/freebsd-current/sys/powerpc/pseries/
H A Dphyp_console.c61 int polltime; member in struct:uart_phyp_softc
261 sc->polltime = hz / 20;
262 if (sc->polltime < 1)
263 sc->polltime = 1;
264 callout_reset(&sc->callout, sc->polltime, uart_phyp_intr, sc);
457 callout_reset(&sc->callout, sc->polltime, uart_phyp_intr, sc);
/freebsd-current/stand/efi/libefi/
H A Defihttp.c400 int polltime; local
487 polltime = 0;
488 while (!done && polltime < EFIHTTP_POLL_TIMEOUT) {
495 polltime += 100;
522 polltime = 0;
523 while (!done && polltime < EFIHTTP_POLL_TIMEOUT) {
530 polltime += 100;
609 int polltime; local
644 polltime = 0;
645 while (!done && polltime < EFIHTTP_POLL_TIMEOU
[all...]
/freebsd-current/sys/powerpc/powernv/
H A Dopal_console.c65 int polltime; member in struct:uart_opal_softc
313 sc->polltime = hz / 20;
314 if (sc->polltime < 1)
315 sc->polltime = 1;
316 callout_reset(&sc->callout, sc->polltime, uart_opal_intr, sc);
540 callout_reset(&sc->callout, sc->polltime, uart_opal_intr, sc);

Completed in 210 milliseconds