Lines Matching refs:pReplyData
67 void *pCmdData, uint32_t *replySize, void *pReplyData);
810 void *pCmdData __unused, uint32_t *replySize, void *pReplyData) in visualizer_command() argument
816 if (pReplyData == NULL || *replySize != visu_ctxt->capture_size) { in visualizer_command()
841 memcpy(pReplyData, in visualizer_command()
844 pReplyData = (void *)((size_t)pReplyData + size); in visualizer_command()
848 memcpy(pReplyData, in visualizer_command()
860 memset(pReplyData, 0x80, visu_ctxt->capture_size); in visualizer_command()
865 memset(pReplyData, 0x80, visu_ctxt->capture_size); in visualizer_command()
901 int32_t* p_int_reply_data = (int32_t*)pReplyData; in visualizer_command()
1074 void *pCmdData, uint32_t *replySize, void *pReplyData) in effect_command() argument
1098 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1103 *(int *) pReplyData = context->ops.init(context); in effect_command()
1105 *(int *) pReplyData = 0; in effect_command()
1109 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1113 *(int *) pReplyData = set_config(context, (effect_config_t *) pCmdData); in effect_command()
1116 if (pReplyData == NULL || in effect_command()
1126 get_config(context, (effect_config_t *)pReplyData); in effect_command()
1133 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1146 *(int *)pReplyData = 0; in effect_command()
1149 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1162 *(int *)pReplyData = 0; in effect_command()
1167 pReplyData == NULL || in effect_command()
1176 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + sizeof(uint32_t)); in effect_command()
1177 effect_param_t *p = (effect_param_t *)pReplyData; in effect_command()
1184 pReplyData == NULL || *replySize != sizeof(int32_t)) { in effect_command()
1188 *(int32_t *)pReplyData = 0; in effect_command()
1191 *(int32_t *)pReplyData = context->ops.set_parameter(context, p, *replySize); in effect_command()
1203 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1214 *(int *)pReplyData = 0; in effect_command()
1235 pCmdData, replySize, pReplyData); in effect_command()