Lines Matching refs:softc
834 struct bofi_errent *softc;
869 softc = ddi_get_soft_state(statep, minor);
870 softc->cnext = softc;
871 softc->cprev = softc;
883 struct bofi_errent *softc;
886 softc = ddi_get_soft_state(statep, minor);
887 if (softc == NULL)
892 for (ep = softc->cnext; ep != softc; ) {
914 struct bofi_errent *softc;
1014 softc = ddi_get_soft_state(statep, minor);
1015 if (softc == NULL)
1025 if (bofi_errdef_alloc(&errdef, namep, softc) != DDI_SUCCESS) {
1733 struct bofi_errent *softc)
1769 ep->cnext = softc->cnext;
1770 softc->cnext->cprev = ep;
1771 ep->cprev = softc;
1772 softc->cnext = ep;