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

/freebsd-11-stable/sys/dev/cfe/
H A Dcfe_console.c64 static int polltime; variable
99 polltime = hz / CFECONS_POLL_HZ;
100 if (polltime < 1)
101 polltime = 1;
102 callout_reset(&cfe_timer, polltime, cfe_timeout, tp);
148 callout_reset(&cfe_timer, polltime, cfe_timeout, tp);
/freebsd-11-stable/sys/dev/bvm/
H A Dbvm_console.c60 static int polltime; variable
119 polltime = hz / BVMCONS_POLL_HZ;
120 if (polltime < 1)
121 polltime = 1;
122 callout_reset(&bvm_timer, polltime, bvm_timeout, tp);
165 callout_reset(&bvm_timer, polltime, bvm_timeout, tp);
/freebsd-11-stable/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-11-stable/sys/powerpc/mambo/
H A Dmambo_console.c57 static int polltime; variable
90 polltime = 1;
93 callout_reset(&mambo_callout, polltime, mambo_timeout, NULL);
124 callout_reset(&mambo_callout, polltime, mambo_timeout, NULL);
/freebsd-11-stable/share/examples/ses/srcs/
H A Dsesd.c60 int fd, polltime, dev, nodaemon, clear, c; local
69 polltime = 30;
80 polltime = atoi(optarg);
174 sleep(polltime);
/freebsd-11-stable/sys/dev/dcons/
H A Ddcons_os.c228 int i, c, polltime; local
243 polltime = hz;
245 polltime /= poll_hz;
246 callout_reset(&dcons_callout, polltime, dcons_timeout, tp);
386 int polltime; local
391 polltime = hz / poll_hz;
392 callout_reset(&dcons_callout, polltime, dcons_timeout, NULL);
/freebsd-11-stable/sys/powerpc/pseries/
H A Dphyp_console.c60 int polltime; member in struct:uart_phyp_softc
260 sc->polltime = hz / 20;
261 if (sc->polltime < 1)
262 sc->polltime = 1;
263 callout_reset(&sc->callout, sc->polltime, uart_phyp_intr, sc);
431 callout_reset(&sc->callout, sc->polltime, uart_phyp_intr, sc);
/freebsd-11-stable/sys/riscv/htif/
H A Dhtif_console.c69 static int polltime; variable
180 polltime = 1;
183 callout_reset(&riscv_callout, polltime, riscv_timeout, NULL);
219 callout_reset(&riscv_callout, polltime, riscv_timeout, NULL);

Completed in 184 milliseconds