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

  /src/sys/arch/arm/sa11x0/
sa1111_kbc.c 93 int polling; /* don't process data in interrupt handler */ member in struct:sackbc_softc
94 int poll_stat; /* data read from inr handler if polling */
95 int poll_data; /* status read from intr handler if polling */
173 if (sc->polling) {
189 if (!(sc->polling) && sc->ih_rx == NULL) {
203 if (sc->polling && sc->ih_rx) {
249 sc->polling = 0;
307 if (sc->polling){
384 if (sc->polling != on) {
386 sc->polling = on
    [all...]
  /src/sys/dev/pckbport/
pckbport.c 66 int polling; /* don't process data in interrupt handler */ member in struct:pckbport_slotdata
190 q->polling = 0;
239 t->t_slotdata[slot]->polling = on;
397 if (q->polling) {
506 if (q->polling && sync)
519 if (q->polling)
  /src/sys/dev/ic/
pckbc.c 55 int polling; /* don't process data in interrupt handler */ member in struct:pckbc_slotdata
56 int poll_data; /* data read from inr handler if polling */
57 int poll_stat; /* status read from inr handler if polling */
124 * This is not canonical way to handle polling input.
138 if (q && q->polling && q->poll_data != -1 && q->poll_stat != -1) {
390 q->polling = 0;
460 t->t_slotdata[slot]->polling = on;
469 * If disabling polling on a device that's been configured,
522 if (q->polling) {
596 if (q != NULL && q->polling)
    [all...]
  /src/sys/arch/next68k/dev/
nextkbd.c 65 int polling; member in struct:nextkbd_internal
321 t->polling = on;
  /src/sys/arch/xen/xen/
xencons.c 107 int polling; member in struct:xencons_softc
204 sc->polling = 0;
452 if (sc->polling) {
519 if (sc->polling)
550 if (xencons_console_device && xencons_console_device->polling == 0) {
551 printf("xenconscn_getc() but not polling\n");
570 if (xencons_console_device->polling == 0) {
571 printf("xenconscn_getc() but not polling\n");
628 xencons_console_device->polling = on;
  /src/sys/arch/evbarm/g42xxeb/
g42xxeb_kmkbd.c 77 u_char polling; member in struct:kmkbd_softc
  /src/sys/dev/usb/
usbdi.c 1110 int polling = bus->ub_usepolling; local in function:usb_transfer_complete
1118 KASSERT(polling || mutex_owned(pipe->up_dev->ud_bus->ub_lock));
1194 if (!polling) {
1204 if (!polling) {
1214 if (sync && !polling) {
1246 int polling = pipe->up_dev->ud_bus->ub_usepolling; local in function:usbd_start_next
1247 KASSERT(polling || mutex_owned(pipe->up_dev->ud_bus->ub_lock));
1266 KASSERT(polling || mutex_owned(pipe->up_dev->ud_bus->ub_lock));
1358 * Called from keyboard driver when in polling mode.
1367 * This is for keyboard driver as well, which only operates in polling
    [all...]
xhci.c 830 * reduce polling on host controllers that
1752 /* If we get an interrupt while polling, then just ignore it. */
1755 DPRINTFN(16, "ignored interrupt while polling", 0, 0, 0, 0);
2700 * polling. It's not safe to complete root intr xfers while
2701 * polling -- too much kernel machinery gets involved.
4471 const bool polling = xhci_polling_p(sc); local in function:xhci_device_ctrl_start
4478 KASSERT(polling || mutex_owned(&sc->sc_lock));
4524 if (!polling)
4527 if (!polling)
4601 const bool polling = xhci_polling_p(sc) local in function:xhci_device_isoc_enter
4755 const bool polling = xhci_polling_p(sc); local in function:xhci_device_bulk_start
4880 const bool polling = xhci_polling_p(sc); local in function:xhci_device_intr_start
    [all...]
  /src/sys/arch/arc/dev/
pccons.c 127 static u_char async, kernel, polling; /* Really, you don't want to know. */ variable in typeref:typename:u_char
496 if (kernel || polling) {
706 if (polling)
894 polling = on;
901 * If disabling polling on a device that's been configured,
  /src/sys/dev/pci/cxgb/
cxgb_ioctl.h 110 int32_t polling; member in struct:ch_qset_params
cxgb_adapter.h 194 uint32_t polling; member in struct:sge_rspq
cxgb_common.h 307 unsigned int polling; /* polling/interrupt service for rspq */ member in struct:qset_params
  /src/sys/external/bsd/ena-com/
ena_com.h 268 bool polling; member in struct:ena_com_admin_queue
516 * @return - current polling mode (enable/disable)
520 /* ena_com_set_admin_polling_mode - Set the admin completion queue polling mode
522 * @polling: ENAble/Disable polling mode
526 void ena_com_set_admin_polling_mode(struct ena_com_dev *ena_dev, bool polling);
528 /* ena_com_set_admin_polling_mode - Get the admin completion queue polling mode
532 * If polling mode is on, ena_com_execute_admin_command will perform a
533 * polling on the admin completion queue for the commands completion,

Completed in 23 milliseconds