Lines Matching refs:pReplyData
558 void *pCmdData, uint32_t *replySize, void *pReplyData) in effect_command() argument
580 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
585 *(int *) pReplyData = context->ops.init(context); in effect_command()
587 *(int *) pReplyData = 0; in effect_command()
591 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
595 *(int *) pReplyData = set_config(context, (effect_config_t *) pCmdData); in effect_command()
598 if (pReplyData == NULL || in effect_command()
608 get_config(context, (effect_config_t *)pReplyData); in effect_command()
615 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
626 *(int *)pReplyData = 0; in effect_command()
629 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
640 *(int *)pReplyData = 0; in effect_command()
645 pReplyData == NULL || in effect_command()
659 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + q->psize); in effect_command()
660 effect_param_t *p = (effect_param_t *)pReplyData; in effect_command()
668 pReplyData == NULL || *replySize != sizeof(int32_t)) { in effect_command()
674 *(int32_t *)pReplyData = 0; in effect_command()
677 *(int32_t *)pReplyData = context->ops.set_parameter(context, p, in effect_command()
701 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
712 *(int *)pReplyData = 0; in effect_command()
733 pCmdData, replySize, pReplyData); in effect_command()