Lines Matching refs:pCmdData

1099                             void* pCmdData, uint32_t* replySize, void* pReplyData) {  in PreProcessingFx_Command()  argument
1120 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t) || pReplyData == NULL || in PreProcessingFx_Command()
1134 *(int*)pReplyData = Session_SetConfig(effect->session, (effect_config_t*)pCmdData); in PreProcessingFx_Command()
1159 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t) || pReplyData == NULL || in PreProcessingFx_Command()
1166 Session_SetReverseConfig(effect->session, (effect_config_t*)pCmdData); in PreProcessingFx_Command()
1178 Session_GetReverseConfig(effect->session, (effect_config_t*)pCmdData); in PreProcessingFx_Command()
1188 effect_param_t* p = (effect_param_t*)pCmdData; in PreProcessingFx_Command()
1190 if (pCmdData == NULL || cmdSize < sizeof(effect_param_t) || in PreProcessingFx_Command()
1198 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + p->psize); in PreProcessingFx_Command()
1212 if (pCmdData == NULL || cmdSize < sizeof(effect_param_t) || pReplyData == NULL || in PreProcessingFx_Command()
1218 effect_param_t* p = (effect_param_t*)pCmdData; in PreProcessingFx_Command()
1249 if (pCmdData == NULL || cmdSize != sizeof(uint32_t)) { in PreProcessingFx_Command()
1255 effect->ops->set_device(effect, *(uint32_t*)pCmdData); in PreProcessingFx_Command()
1266 if (pCmdData == NULL || cmdSize != sizeof(uint32_t) || pReplyData == NULL || in PreProcessingFx_Command()
1273 gDualMicEnabled = *(bool*)pCmdData; in PreProcessingFx_Command()
1287 if (pCmdData == NULL || pReplyData == NULL || replySize == NULL) { in PreProcessingFx_Command()
1298 char* path = strndup((char*)pCmdData, cmdSize); in PreProcessingFx_Command()
1330 if (pCmdData == NULL || cmdSize != 2 * sizeof(uint32_t) || pReplyData == NULL || in PreProcessingFx_Command()
1337 if (*(uint32_t*)pCmdData != EFFECT_FEATURE_AUX_CHANNELS || !effect->aux_channels_on) { in PreProcessingFx_Command()
1345 size_t num_configs = *((uint32_t*)pCmdData + 1); in PreProcessingFx_Command()
1371 if (pCmdData == NULL || cmdSize != sizeof(uint32_t) || pReplyData == NULL || in PreProcessingFx_Command()
1377 if (*(uint32_t*)pCmdData != EFFECT_FEATURE_AUX_CHANNELS || !effect->aux_channels_on) { in PreProcessingFx_Command()
1395 if (pCmdData == NULL || cmdSize != (sizeof(uint32_t) + sizeof(channel_config_t)) || in PreProcessingFx_Command()
1400 pCmdData, cmdSize, pReplyData, replySize, replySize ? *replySize : -1); in PreProcessingFx_Command()
1404 if (*(uint32_t*)pCmdData != EFFECT_FEATURE_AUX_CHANNELS || !effect->aux_channels_on) { in PreProcessingFx_Command()
1409 *(uint32_t*)pCmdData, effect->aux_channels_on); in PreProcessingFx_Command()
1414 if (memcmp((uint32_t*)pCmdData + 1, &sDualMicConfigs[i], in PreProcessingFx_Command()
1423 *((uint32_t*)pCmdData + 1), *((uint32_t*)pCmdData + 2)); in PreProcessingFx_Command()