Lines Matching refs:pCmdData
1094 void* pCmdData, uint32_t* replySize, void* pReplyData) { in PreProcessingFx_Command() argument
1115 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t) || pReplyData == NULL || in PreProcessingFx_Command()
1129 *(int*)pReplyData = Session_SetConfig(effect->session, (effect_config_t*)pCmdData); in PreProcessingFx_Command()
1154 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t) || pReplyData == NULL || in PreProcessingFx_Command()
1161 Session_SetReverseConfig(effect->session, (effect_config_t*)pCmdData); in PreProcessingFx_Command()
1173 Session_GetReverseConfig(effect->session, (effect_config_t*)pCmdData); in PreProcessingFx_Command()
1183 effect_param_t* p = (effect_param_t*)pCmdData; in PreProcessingFx_Command()
1185 if (pCmdData == NULL || cmdSize < sizeof(effect_param_t) || in PreProcessingFx_Command()
1193 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + p->psize); in PreProcessingFx_Command()
1207 if (pCmdData == NULL || cmdSize < sizeof(effect_param_t) || pReplyData == NULL || in PreProcessingFx_Command()
1213 effect_param_t* p = (effect_param_t*)pCmdData; in PreProcessingFx_Command()
1244 if (pCmdData == NULL || cmdSize != sizeof(uint32_t)) { in PreProcessingFx_Command()
1250 effect->ops->set_device(effect, *(uint32_t*)pCmdData); in PreProcessingFx_Command()
1261 if (pCmdData == NULL || cmdSize != sizeof(uint32_t) || pReplyData == NULL || in PreProcessingFx_Command()
1268 gDualMicEnabled = *(bool*)pCmdData; in PreProcessingFx_Command()
1282 if (pCmdData == NULL || pReplyData == NULL || replySize == NULL) { in PreProcessingFx_Command()
1293 char* path = strndup((char*)pCmdData, cmdSize); in PreProcessingFx_Command()
1325 if (pCmdData == NULL || cmdSize != 2 * sizeof(uint32_t) || pReplyData == NULL || in PreProcessingFx_Command()
1332 if (*(uint32_t*)pCmdData != EFFECT_FEATURE_AUX_CHANNELS || !effect->aux_channels_on) { in PreProcessingFx_Command()
1340 size_t num_configs = *((uint32_t*)pCmdData + 1); in PreProcessingFx_Command()
1366 if (pCmdData == NULL || cmdSize != sizeof(uint32_t) || pReplyData == NULL || in PreProcessingFx_Command()
1372 if (*(uint32_t*)pCmdData != EFFECT_FEATURE_AUX_CHANNELS || !effect->aux_channels_on) { in PreProcessingFx_Command()
1390 if (pCmdData == NULL || cmdSize != (sizeof(uint32_t) + sizeof(channel_config_t)) || in PreProcessingFx_Command()
1395 pCmdData, cmdSize, pReplyData, replySize, replySize ? *replySize : -1); in PreProcessingFx_Command()
1399 if (*(uint32_t*)pCmdData != EFFECT_FEATURE_AUX_CHANNELS || !effect->aux_channels_on) { in PreProcessingFx_Command()
1404 *(uint32_t*)pCmdData, effect->aux_channels_on); in PreProcessingFx_Command()
1409 if (memcmp((uint32_t*)pCmdData + 1, &sDualMicConfigs[i], in PreProcessingFx_Command()
1418 *((uint32_t*)pCmdData + 1), *((uint32_t*)pCmdData + 2)); in PreProcessingFx_Command()