/src/sys/dev/pci/ |
auviavar.h | 66 struct ac97_host_if host_if; member in struct:auvia_softc
|
fmsvar.h | 54 struct ac97_host_if host_if; member in struct:fms_softc
|
auixpvar.h | 75 struct ac97_host_if host_if; member in struct:auixp_codec
|
autrivar.h | 48 struct ac97_host_if host_if; member in struct:autri_codec_softc
|
eapvar.h | 79 struct ac97_host_if host_if; member in struct:eap_softc
|
ydsvar.h | 52 struct ac97_host_if host_if; member in struct:yds_codec_softc
|
esavar.h | 116 struct ac97_host_if host_if; member in struct:esa_softc
|
esmvar.h | 169 struct ac97_host_if host_if; member in struct:esm_softc
|
cs428x.h | 140 struct ac97_host_if host_if; member in struct:cs428x_softc
|
neo.c | 161 struct ac97_host_if host_if; member in struct:neo_softc 622 sc->host_if.arg = sc; 623 sc->host_if.attach = neo_attach_codec; 624 sc->host_if.read = neo_read_codec; 625 sc->host_if.write = neo_write_codec; 626 sc->host_if.reset = neo_reset_codec; 627 sc->host_if.flags = neo_flags_codec; 629 if (ac97_attach(&sc->host_if, self, &sc->lock) != 0) {
|
auacer.c | 110 struct ac97_host_if host_if; member in struct:auacer_softc 313 sc->host_if.arg = sc; 314 sc->host_if.attach = auacer_attach_codec; 315 sc->host_if.read = auacer_read_codec; 316 sc->host_if.write = auacer_write_codec; 317 sc->host_if.reset = auacer_reset_codec; 319 if (ac97_attach(&sc->host_if, self, &sc->sc_lock) != 0) {
|
gcscaudio.c | 105 struct ac97_host_if host_if; member in struct:gcscaudio_softc 311 sc->host_if.arg = sc; 312 sc->host_if.attach = gcscaudio_attach_codec; 313 sc->host_if.read = gcscaudio_read_codec; 314 sc->host_if.write = gcscaudio_write_codec; 315 sc->host_if.reset = gcscaudio_reset_codec; 316 sc->host_if.spdif_event = gcscaudio_spdif_event_codec; 318 if ((rc = ac97_attach(&sc->host_if, self, &sc->sc_lock)) != 0) {
|
auich.c | 180 struct ac97_host_if host_if; member in struct:auich_softc 602 sc->host_if.arg = sc; 603 sc->host_if.attach = auich_attach_codec; 604 sc->host_if.read = auich_read_codec; 605 sc->host_if.write = auich_write_codec; 606 sc->host_if.reset = auich_reset_codec; 607 sc->host_if.flags = auich_flags_codec; 608 sc->host_if.spdif_event = auich_spdif_event; 626 if (ac97_attach_type(&sc->host_if, self, sc->sc_codectype,
|
/src/dist/pf/sbin/pfctl/ |
pfctl_parser.c | 75 struct node_host *host_if(const char *, int); 1436 if (cont && (h = host_if(ps, mask)) != NULL) 1460 host_if(const char *s, int mask) function in typeref:struct:node_host * 1467 err(1, "host_if: strdup");
|
/src/sys/dev/ic/ |
ac97.c | 502 struct ac97_host_if *host_if; member in struct:ac97_softc 946 if (as->host_if->read(as->host_if->arg, reg, val)) { 958 return as->host_if->write(as->host_if->arg, reg, val); 964 ret = as->host_if->write(as->host_if->arg, reg, val); 965 as->host_if->read(as->host_if->arg, reg, &actual); 1227 ac97_attach(struct ac97_host_if *host_if, device_t sc_dev, kmutex_t *lk [all...] |