Lines Matching refs:osc
327 struct onoe_softc *osc = (struct onoe_softc *) sc->sc_rc;
332 callout_stop(&osc->timer);
366 callout_reset(&osc->timer, (interval * hz) / 1000,
447 struct onoe_softc *osc = (struct onoe_softc *) sc->sc_rc;
462 callout_reset(&osc->timer, (interval * hz) / 1000,
489 struct onoe_softc *osc;
491 osc = malloc(sizeof(struct onoe_softc), M_DEVBUF, M_WAITOK|M_ZERO);
492 osc->arc.arc_space = sizeof(struct onoe_node);
493 callout_init(&osc->timer, 0);
496 return &osc->arc;
502 struct onoe_softc *osc = (struct onoe_softc *) arc;
504 callout_stop(&osc->timer);
505 free(osc, M_DEVBUF);