Lines Matching refs:pReplyData
537 void *pCmdData, uint32_t *replySize, void *pReplyData) in effect_command() argument
558 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
563 *(int *) pReplyData = context->ops.init(context); in effect_command()
565 *(int *) pReplyData = 0; in effect_command()
569 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
573 *(int *) pReplyData = set_config(context, (effect_config_t *) pCmdData); in effect_command()
576 if (pReplyData == NULL || in effect_command()
586 get_config(context, (effect_config_t *)pReplyData); in effect_command()
593 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
605 *(int *)pReplyData = 0; in effect_command()
608 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
620 *(int *)pReplyData = 0; in effect_command()
625 pReplyData == NULL || in effect_command()
639 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + q->psize); in effect_command()
640 effect_param_t *p = (effect_param_t *)pReplyData; in effect_command()
648 pReplyData == NULL || *replySize != sizeof(int32_t)) { in effect_command()
654 *(int32_t *)pReplyData = 0; in effect_command()
657 *(int32_t *)pReplyData = context->ops.set_parameter(context, p, in effect_command()
675 if (pReplyData == NULL) { in effect_command()
682 memcpy(pReplyData, pCmdData, sizeof(int32_t)*2); in effect_command()
690 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
701 *(int *)pReplyData = 0; in effect_command()
720 pCmdData, replySize, pReplyData); in effect_command()