Symbol: snd_mtxcreate
sys/dev/sound/pci/als4000.c
815
sc->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_als4000 softc");
sys/dev/sound/pci/atiixp.c
1194
sc->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_atiixp softc");
sys/dev/sound/pci/cmi.c
943
sc->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_cmi softc");
sys/dev/sound/pci/emu10k1.c
2081
sc->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_emu10k1 softc");
sys/dev/sound/pci/emu10kx-pcm.c
1355
sc->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_emu10kx pcm softc");
sys/dev/sound/pci/envy24.c
2562
sc->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_envy24 softc");
sys/dev/sound/pci/envy24ht.c
2468
sc->lock = snd_mtxcreate(device_get_nameunit(dev),
sys/dev/sound/pci/es137x.c
1715
es->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_es137x softc");
sys/dev/sound/pci/hda/hdac.c
1204
sc->lock = snd_mtxcreate(device_get_nameunit(dev), "HDA driver mutex");
sys/dev/sound/pci/hdspe.c
293
sc->lock = snd_mtxcreate(device_get_nameunit(dev),
sys/dev/sound/pci/ich.c
891
sc->ich_lock = snd_mtxcreate(device_get_nameunit(dev), "snd_ich softc");
sys/dev/sound/pci/solo.c
906
sc->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_solo softc");
sys/dev/sound/pci/spicds.c
152
codec->lock = snd_mtxcreate(codec->name, codec->name);
sys/dev/sound/pci/t4dwave.c
839
tr->lock = snd_mtxcreate(device_get_nameunit(dev), "snd_t4dwave softc");
sys/dev/sound/pci/via8233.c
1174
via->lock = snd_mtxcreate(device_get_nameunit(dev),
sys/dev/sound/pci/via82c686.c
485
via->lock = snd_mtxcreate(device_get_nameunit(dev),
sys/dev/sound/pcm/ac97.c
834
codec->lock = snd_mtxcreate(codec->name, "ac97 codec");
sys/dev/sound/pcm/channel.c
231
c->lock = snd_mtxcreate(c->name, "pcm play channel");
sys/dev/sound/pcm/channel.c
235
c->lock = snd_mtxcreate(c->name, "pcm virtual play channel");
sys/dev/sound/pcm/channel.c
239
c->lock = snd_mtxcreate(c->name, "pcm record channel");
sys/dev/sound/pcm/channel.c
243
c->lock = snd_mtxcreate(c->name, "pcm virtual record channel");
sys/dev/sound/pcm/mixer.c
632
m->lock = snd_mtxcreate(m->name, (type == MIXER_TYPE_PRIMARY) ?
sys/dev/sound/pcm/sound.c
1037
d->lock = snd_mtxcreate(device_get_nameunit(dev), "sound cdev");
sys/dev/sound/pcm/sound.h
356
void *snd_mtxcreate(const char *desc, const char *type);