Lines Matching refs:chan
22 static SLresult IMuteSolo_SetChannelMute(SLMuteSoloItf self, SLuint8 chan, SLboolean mute) in IMuteSolo_SetChannelMute() argument
37 } else if (numChannels <= chan) { in IMuteSolo_SetChannelMute()
41 SLuint8 mask = 1 << chan; in IMuteSolo_SetChannelMute()
58 static SLresult IMuteSolo_GetChannelMute(SLMuteSoloItf self, SLuint8 chan, SLboolean *pMute) in IMuteSolo_GetChannelMute() argument
77 } else if (numChannels <= chan) { in IMuteSolo_GetChannelMute()
82 mute = (SLboolean) ((mask >> chan) & 1); in IMuteSolo_GetChannelMute()
94 static SLresult IMuteSolo_SetChannelSolo(SLMuteSoloItf self, SLuint8 chan, SLboolean solo) in IMuteSolo_SetChannelSolo() argument
109 } else if (numChannels <= chan) { in IMuteSolo_SetChannelSolo()
113 SLuint8 mask = 1 << chan; in IMuteSolo_SetChannelSolo()
130 static SLresult IMuteSolo_GetChannelSolo(SLMuteSoloItf self, SLuint8 chan, SLboolean *pSolo) in IMuteSolo_GetChannelSolo() argument
149 } else if (numChannels <= chan) { in IMuteSolo_GetChannelSolo()
154 solo = (SLboolean) ((mask >> chan) & 1); in IMuteSolo_GetChannelSolo()