/src/sys/sys/ |
radioio.h | 43 int mute; member in struct:radio_info
|
/src/sys/dev/i2c/ |
tea5767.c | 50 int mute; member in struct:tea5767_tune 119 sc->tune.mute = 0; 230 if (sc->tune.mute) { 280 ri->mute = sc->tune.mute; 297 sc->tune.mute = ri->mute;
|
/src/sys/arch/arm/sunxi/ |
sunxi_codec.h | 47 /* toggle DAC/ADC mute */ 48 void (*mute)(struct sunxi_codec_softc *, int, u_int); member in struct:sunxi_codec_conf
|
/src/sys/dev/ic/ |
ad1848var.h | 72 #define WAVE_MUTE0 1 /* force mute (overrides UNMUTE1) */ 74 #define WAVE_MUTE2 4 /* weak mute */ 79 * These are indexes into mute[] array and into a register 120 char mute[AD1848_NUM_CHANNELS]; member in struct:ad1848_softc
|
ac97.c | 279 unsigned mute:1; member in struct:ac97_source_info 332 /* Surround volume - logic hard coded for mute */ 1146 /* Add an entry for mute, if necessary */ 1147 if (si->mute) { 1161 si->mute = 0;
|
/src/sys/dev/isa/ |
aztech.c | 95 int mute; member in struct:az_softc 170 sc->mute = 0; 198 * Mute the card 204 sc->mute ? 0 : sc->vol); 207 sc->mute ? 0 : sc->vol); 216 vol = sc->mute ? 0 : sc->vol; 294 sc.mute = 0; 330 ri->mute = sc->mute; 349 sc->mute = ri->mute ? 1 : 0 [all...] |
radiotrack.c | 107 int mute; member in struct:rt_softc 183 sc->mute = 0; 228 * Mute the card 235 if (sc->mute) { 353 sc.mute = 0; 395 sc->mute = ri->mute ? 1 : 0; 411 ri->mute = sc->mute;
|
radiotrack2.c | 104 int mute; member in struct:rtii_softc 172 sc->mute = 0; 198 * Mute/unmute the card 203 u_int8_t mute; local in function:rtii_set_mute 205 mute = (sc->mute || !sc->vol) ? RTII_MUTE : RTII_UNMUTE; 206 bus_space_write_1(sc->tea.iot, sc->tea.ioh, 0, mute); 208 bus_space_write_1(sc->tea.iot, sc->tea.ioh, 0, mute); 297 ri->mute = sc->mute; [all...] |
sf16fmr2.c | 104 int mute; member in struct:sf2r_softc 172 sc->mute = 0; 198 * Mute/unmute the card 203 u_int8_t mute; local in function:sf2r_set_mute 205 mute = (sc->mute || !sc->vol) ? SF16FMR2_MUTE : SF16FMR2_UNMUTE; 206 bus_space_write_1(sc->tea.iot, sc->tea.ioh, 0, mute); 208 bus_space_write_1(sc->tea.iot, sc->tea.ioh, 0, mute); 316 ri->mute = sc->mute; [all...] |
aria.c | 78 u_char mute; member in struct:aria_mixdev_info 672 if (sc->aria_mix[i].mute == 1) 1126 sc->aria_mix[ARIAMIX_MIC_LVL].mute =cp->un.ord; 1133 sc->aria_mix[ARIAMIX_LINE_IN_LVL].mute = 1141 sc->aria_mix[ARIAMIX_CD_LVL].mute = cp->un.ord; 1148 sc->aria_mix[ARIAMIX_DAC_LVL].mute =cp->un.ord; 1155 sc->aria_mix[ARIAMIX_AUX_LVL].mute =cp->un.ord; 1162 sc->aria_mix[ARIAMIX_TEL_LVL].mute =cp->un.ord; 1261 cp->un.ord = sc->aria_mix[ARIAMIX_MIC_LVL].mute; 1268 cp->un.ord = sc->aria_mix[ARIAMIX_LINE_IN_LVL].mute; [all...] |
sbdsp.c | 1796 int mute, swap; local in function:sbdsp_mixer_set_port 1991 mute = cp->dev; 1992 swap = mute - SB_CD_IN_MUTE + SB_CD_SWAP; 1995 mute = swap + SB_CD_IN_MUTE - SB_CD_SWAP; 2002 if (!sc->gain[mute][SB_LR]) { 2363 goto mute; 2369 goto mute; 2375 goto mute; 2381 goto mute; 2410 goto mute; [all...] |
/src/sys/dev/pci/ |
gtp.c | 96 int mute; member in struct:gtp_softc 164 sc->mute = 0; 185 ri->mute = sc->mute; 206 sc->mute = ri->mute ? 1 : 0; 231 if (sc->mute || !sc->vol)
|
sv.c | 914 int off, mute ,idx; local in function:sv_query_devinfo 917 mute = (off % SV_DEVICES_PER_PORT); 922 if (!mute) { 1010 int off, mute; local in function:sv_mixer_set_port 1013 mute = (off % SV_DEVICES_PER_PORT); 1016 if (mute) { 1191 int mute = (off % 2); local in function:sv_mixer_get_port 1195 mute = (off % 2); 1197 if (mute) {
|
/src/sys/dev/hdaudio/ |
hdafg.c | 1238 int mute, offset, step, size; local in function:hdafg_control_parse 1282 mute = COP_AMPCAP_MUTE_CAPABLE(ocap); 1288 ctl[cnt].ctl_mute = mute; 1302 mute = COP_AMPCAP_MUTE_CAPABLE(icap); 1323 ctl[cnt].ctl_mute = mute; 1340 ctl[cnt].ctl_mute = mute; 1474 /* Disable and mute controls for disabled widgets */ 2074 hda_print(sc, " mute: %d step: %3d size: %3d off: %3d%s\n", 2332 hdafg_control_amp_set(struct hdaudio_control *ctl, uint32_t mute, 2338 if (mute != HDAUDIO_AMP_MUTE_DEFAULT [all...] |