Lines Matching refs:pCmdData
1400 void *pCmdData, in PreProcessingFx_Command() argument
1426 if (pCmdData == NULL|| in PreProcessingFx_Command()
1442 *(int *)pReplyData = Session_SetConfig(effect->session, (effect_config_t *)pCmdData); in PreProcessingFx_Command()
1468 if (pCmdData == NULL || in PreProcessingFx_Command()
1477 (effect_config_t *)pCmdData); in PreProcessingFx_Command()
1490 Session_GetReverseConfig(effect->session, (effect_config_t *)pCmdData); in PreProcessingFx_Command()
1500 effect_param_t *p = (effect_param_t *)pCmdData; in PreProcessingFx_Command()
1502 if (pCmdData == NULL || cmdSize < sizeof(effect_param_t) || in PreProcessingFx_Command()
1511 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + p->psize); in PreProcessingFx_Command()
1526 if (pCmdData == NULL|| in PreProcessingFx_Command()
1534 effect_param_t *p = (effect_param_t *) pCmdData; in PreProcessingFx_Command()
1566 if (pCmdData == NULL || in PreProcessingFx_Command()
1573 effect->ops->set_device(effect, *(uint32_t *)pCmdData); in PreProcessingFx_Command()
1584 if (pCmdData == NULL|| cmdSize != sizeof(uint32_t) || in PreProcessingFx_Command()
1591 gDualMicEnabled = *(bool *)pCmdData; in PreProcessingFx_Command()
1605 if (pCmdData == NULL|| pReplyData == NULL || replySize == NULL) { in PreProcessingFx_Command()
1616 char *path = strndup((char *)pCmdData, cmdSize); in PreProcessingFx_Command()
1649 if (pCmdData == NULL|| cmdSize != 2 * sizeof(uint32_t) || in PreProcessingFx_Command()
1656 if (*(uint32_t *)pCmdData != EFFECT_FEATURE_AUX_CHANNELS || in PreProcessingFx_Command()
1664 size_t num_configs = *((uint32_t *)pCmdData + 1); in PreProcessingFx_Command()
1691 if (pCmdData == NULL|| cmdSize != sizeof(uint32_t) || in PreProcessingFx_Command()
1698 if (*(uint32_t *)pCmdData != EFFECT_FEATURE_AUX_CHANNELS || !effect->aux_channels_on) { in PreProcessingFx_Command()
1717 if (pCmdData == NULL|| cmdSize != (sizeof(uint32_t) + sizeof(channel_config_t)) || in PreProcessingFx_Command()
1723 pCmdData, cmdSize, pReplyData, replySize, replySize ? *replySize : -1); in PreProcessingFx_Command()
1727 if (*(uint32_t *)pCmdData != EFFECT_FEATURE_AUX_CHANNELS || !effect->aux_channels_on) { in PreProcessingFx_Command()
1732 *(uint32_t *)pCmdData, effect->aux_channels_on); in PreProcessingFx_Command()
1737 if (memcmp((uint32_t *)pCmdData + 1, in PreProcessingFx_Command()
1745 "[%08x].[%08x]", *((uint32_t *)pCmdData + 1), *((uint32_t *)pCmdData + 2)); in PreProcessingFx_Command()