| /freebsd-11-stable/sys/dev/cfe/ |
| HD | cfe_console.c | 64 static int polltime; variable 99 polltime = hz / CFECONS_POLL_HZ; in cfe_tty_open() 100 if (polltime < 1) in cfe_tty_open() 101 polltime = 1; in cfe_tty_open() 102 callout_reset(&cfe_timer, polltime, cfe_timeout, tp); in cfe_tty_open() 148 callout_reset(&cfe_timer, polltime, cfe_timeout, tp); in cfe_timeout()
|
| /freebsd-11-stable/sys/dev/ofw/ |
| HD | ofw_console.c | 62 static int polltime; variable 115 polltime = hz / OFWCONS_POLL_HZ; in ofwtty_open() 116 if (polltime < 1) in ofwtty_open() 117 polltime = 1; in ofwtty_open() 119 callout_reset(&ofw_timer, polltime, ofw_timeout, tp); in ofwtty_open() 158 callout_schedule(&ofw_timer, polltime); in ofw_timeout()
|
| /freebsd-11-stable/sys/dev/bvm/ |
| HD | bvm_console.c | 60 static int polltime; variable 119 polltime = hz / BVMCONS_POLL_HZ; in bvm_tty_open() 120 if (polltime < 1) in bvm_tty_open() 121 polltime = 1; in bvm_tty_open() 122 callout_reset(&bvm_timer, polltime, bvm_timeout, tp); in bvm_tty_open() 165 callout_reset(&bvm_timer, polltime, bvm_timeout, tp); in bvm_timeout()
|
| /freebsd-11-stable/sys/powerpc/mambo/ |
| HD | mambo_console.c | 57 static int polltime; variable 90 polltime = 1; in cn_drvinit() 93 callout_reset(&mambo_callout, polltime, mambo_timeout, NULL); in cn_drvinit() 124 callout_reset(&mambo_callout, polltime, mambo_timeout, NULL); in mambo_timeout()
|
| /freebsd-11-stable/share/examples/ses/srcs/ |
| HD | sesd.c | 60 int fd, polltime, dev, nodaemon, clear, c; in main() local 69 polltime = 30; in main() 80 polltime = atoi(optarg); in main() 174 sleep(polltime); in main()
|
| /freebsd-11-stable/sys/dev/dcons/ |
| HD | dcons_os.c | 228 int i, c, polltime; in dcons_timeout() local 243 polltime = hz; in dcons_timeout() 245 polltime /= poll_hz; in dcons_timeout() 246 callout_reset(&dcons_callout, polltime, dcons_timeout, tp); in dcons_timeout() 386 int polltime; in dcons_attach() local 391 polltime = hz / poll_hz; in dcons_attach() 392 callout_reset(&dcons_callout, polltime, dcons_timeout, NULL); in dcons_attach()
|
| /freebsd-11-stable/sys/powerpc/pseries/ |
| HD | phyp_console.c | 60 int polltime; member 260 sc->polltime = hz / 20; in uart_phyp_attach() 261 if (sc->polltime < 1) in uart_phyp_attach() 262 sc->polltime = 1; in uart_phyp_attach() 263 callout_reset(&sc->callout, sc->polltime, uart_phyp_intr, sc); in uart_phyp_attach() 431 callout_reset(&sc->callout, sc->polltime, uart_phyp_intr, sc); in uart_phyp_intr()
|
| /freebsd-11-stable/sys/riscv/htif/ |
| HD | htif_console.c | 69 static int polltime; variable 180 polltime = 1; in cn_drvinit() 183 callout_reset(&riscv_callout, polltime, riscv_timeout, NULL); in cn_drvinit() 219 callout_reset(&riscv_callout, polltime, riscv_timeout, NULL); in riscv_timeout()
|