| /src/sys/dev/ic/ |
| cacvar.h | 119 SIMPLEQ_HEAD(, cac_ccb) sc_ccb_queue; member in struct:cac_softc
|
| cac.c | 114 SIMPLEQ_INIT(&sc->sc_ccb_queue); 435 SIMPLEQ_INSERT_TAIL(&sc->sc_ccb_queue, ccb, ccb_chain); 437 while ((ccb = SIMPLEQ_FIRST(&sc->sc_ccb_queue)) != NULL) { 440 SIMPLEQ_REMOVE_HEAD(&sc->sc_ccb_queue, ccb_chain);
|
| aacvar.h | 323 SIMPLEQ_HEAD(, aac_ccb) sc_ccb_queue; member in struct:aac_softc
|
| aac.c | 154 SIMPLEQ_INIT(&sc->sc_ccb_queue); 982 if (! SIMPLEQ_EMPTY(&sc->sc_ccb_queue)) 1167 if (! SIMPLEQ_EMPTY(&sc->sc_ccb_queue)) 1408 SIMPLEQ_INSERT_TAIL(&sc->sc_ccb_queue, ac, ac_chain); 1410 while ((ac = SIMPLEQ_FIRST(&sc->sc_ccb_queue)) != NULL) { 1413 SIMPLEQ_REMOVE_HEAD(&sc->sc_ccb_queue, ac_chain);
|
| /src/sys/dev/pci/ |
| twevar.h | 64 SIMPLEQ_HEAD(, twe_ccb) sc_ccb_queue; member in struct:twe_softc
|
| twe.c | 330 SIMPLEQ_INIT(&sc->sc_ccb_queue); 1651 SIMPLEQ_INSERT_TAIL(&sc->sc_ccb_queue, ccb, ccb_chain.simpleq); 1653 while ((ccb = SIMPLEQ_FIRST(&sc->sc_ccb_queue)) != NULL) { 1656 SIMPLEQ_REMOVE_HEAD(&sc->sc_ccb_queue, ccb_chain.simpleq);
|