Lines Matching refs:pCmdData
537 void *pCmdData, uint32_t *replySize, void *pReplyData) in effect_command() argument
568 if (pCmdData == NULL || cmdSize != sizeof(effect_config_t) in effect_command()
573 *(int *) pReplyData = set_config(context, (effect_config_t *) pCmdData); in effect_command()
623 if (pCmdData == NULL || in effect_command()
628 ((effect_param_t *)pCmdData)->psize > *replySize - sizeof(effect_param_t)) { in effect_command()
638 effect_param_t *q = (effect_param_t *)pCmdData; in effect_command()
639 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + q->psize); in effect_command()
645 if (pCmdData == NULL || in effect_command()
655 effect_param_t *p = (effect_param_t *)pCmdData; in effect_command()
664 if (pCmdData == NULL || cmdSize < sizeof(uint32_t)) { in effect_command()
669 device = *(uint32_t *)pCmdData; in effect_command()
678 if (pCmdData == NULL || cmdSize != 2 * sizeof(uint32_t) || in effect_command()
682 memcpy(pReplyData, pCmdData, sizeof(int32_t)*2); in effect_command()
689 if (cmdSize != sizeof(effect_offload_param_t) || pCmdData == NULL in effect_command()
696 effect_offload_param_t* offload_param = (effect_offload_param_t*)pCmdData; in effect_command()
720 pCmdData, replySize, pReplyData); in effect_command()