Symbol: sc_timer
sys/arch/arm/samsung/exynos_pwm.c
183
timer = &sc->sc_timer[index];
sys/arch/arm/samsung/exynos_pwm.c
238
sc->sc_timer[n].timer_index = n;
sys/arch/arm/samsung/exynos_pwm.c
239
sc->sc_timer[n].timer_pwm.pwm_enable = exynos_pwm_enable;
sys/arch/arm/samsung/exynos_pwm.c
240
sc->sc_timer[n].timer_pwm.pwm_get_config = exynos_pwm_get_config;
sys/arch/arm/samsung/exynos_pwm.c
241
sc->sc_timer[n].timer_pwm.pwm_set_config = exynos_pwm_set_config;
sys/arch/arm/samsung/exynos_pwm.c
242
sc->sc_timer[n].timer_pwm.pwm_dev = self;
sys/arch/arm/samsung/exynos_pwm.c
243
sc->sc_timer[n].timer_pwm.pwm_priv = &sc->sc_timer[n];
sys/arch/arm/samsung/exynos_pwm.c
77
struct exynos_pwm_timer sc_timer[PWM_NTIMERS];
sys/arch/newsmips/dev/scsi_1185.c
747
sc_timer = 0x2;
sys/arch/newsmips/dev/scsi_1185.c
752
sc_timer = SEL_TIMEOUT_VALUE;
sys/arch/sparc64/dev/pcf8591_envctrl.c
276
callout_init(&sc->sc_timer, CALLOUT_MPSAFE);
sys/arch/sparc64/dev/pcf8591_envctrl.c
277
callout_reset(&sc->sc_timer, hz*20, ecadc_timeout, sc);
sys/arch/sparc64/dev/pcf8591_envctrl.c
292
callout_halt(&sc->sc_timer, NULL);
sys/arch/sparc64/dev/pcf8591_envctrl.c
293
callout_destroy(&sc->sc_timer);
sys/arch/sparc64/dev/pcf8591_envctrl.c
411
callout_reset(&sc->sc_timer, hz*60, ecadc_timeout, sc);
sys/arch/sparc64/dev/pcf8591_envctrl.c
82
callout_t sc_timer;
sys/arch/sparc64/dev/tda.c
131
callout_init(&sc->sc_timer, CALLOUT_MPSAFE);
sys/arch/sparc64/dev/tda.c
132
callout_reset(&sc->sc_timer, hz*20, tda_timeout, sc);
sys/arch/sparc64/dev/tda.c
182
callout_halt(&sc->sc_timer, NULL);
sys/arch/sparc64/dev/tda.c
183
callout_destroy(&sc->sc_timer);
sys/arch/sparc64/dev/tda.c
196
callout_reset(&sc->sc_timer, hz*60, tda_timeout, sc);
sys/arch/sparc64/dev/tda.c
73
callout_t sc_timer;
sys/dev/i2c/pcf8574.c
237
callout_init(&sc->sc_timer, CALLOUT_MPSAFE);
sys/dev/i2c/pcf8574.c
238
callout_reset(&sc->sc_timer, hz * sc->sc_callout_time,
sys/dev/i2c/pcf8574.c
250
callout_halt(&sc->sc_timer, NULL);
sys/dev/i2c/pcf8574.c
251
callout_destroy(&sc->sc_timer);
sys/dev/i2c/pcf8574.c
398
callout_reset(&sc->sc_timer, hz * sc->sc_callout_time,
sys/dev/i2c/pcf8574.c
80
callout_t sc_timer;
sys/dev/ic/sl811hs.c
1202
callout_init(&sc->sc_timer, CALLOUT_MPSAFE);
sys/dev/ic/sl811hs.c
1203
callout_setfunc(&sc->sc_timer, slhci_reset_entry, sc);
sys/dev/ic/sl811hs.c
3112
callout_schedule(&sc->sc_timer, uimax(mstohz(50), 2));
sys/dev/ic/sl811hsvar.h
65
struct callout sc_timer; /* for reset */
sys/dev/isa/pcppi.c
269
if (sc->sc_timer != NULL) {
sys/dev/isa/pcppi.c
270
attimer_detach_speaker(sc->sc_timer);
sys/dev/isa/pcppi.c
271
sc->sc_timer = NULL;
sys/dev/isa/pcppi.c
280
if ((sc->sc_timer = attimer_attach_speaker()) == NULL)
sys/dev/isa/pcppi.c
283
aprint_normal_dev(sc->sc_timer, "attached to %s\n",
sys/dev/isa/pcppi.c
317
if (sc->sc_timer != NULL)
sys/dev/isa/pcppi.c
318
attimer_set_pitch(sc->sc_timer, pitch);
sys/dev/isa/pcppivar.h
46
device_t sc_timer;
sys/dev/pci/if_et.c
1037
CSR_WRITE_4(sc, ET_TIMER, sc->sc_timer);
sys/dev/pci/if_et.c
1088
CSR_WRITE_4(sc, ET_TIMER, sc->sc_timer);
sys/dev/pci/if_et.c
192
sc->sc_timer = et_timer;
sys/dev/pci/if_etreg.h
530
uint32_t sc_timer;
sys/netinet/tcp_syncache.c
274
callout_reset(&sc->sc_timer,
sys/netinet/tcp_syncache.c
288
callout_stop(&sc->sc_timer);
sys/netinet/tcp_syncache.c
299
if (!callout_invoking(&sc->sc_timer))
sys/netinet/tcp_syncache.c
300
callout_schedule(&(sc)->sc_timer, 1);
sys/netinet/tcp_syncache.c
426
callout_ack(&sc->sc_timer);
sys/netinet/tcp_syncache.c
464
callout_destroy(&sc->sc_timer);
sys/netinet/tcp_syncache.c
963
callout_init(&sc->sc_timer, CALLOUT_MPSAFE);
sys/netinet/tcp_syncache.h
163
callout_t sc_timer; /* rexmt timer */