Lines Matching refs:pReplyData
69 void *pCmdData, uint32_t *replySize, void *pReplyData);
820 void *pCmdData __unused, uint32_t *replySize, void *pReplyData) in visualizer_command() argument
826 if (pReplyData == NULL || *replySize != visu_ctxt->capture_size) { in visualizer_command()
854 memcpy(pReplyData, in visualizer_command()
857 pReplyData = (void *)((size_t)pReplyData + size); in visualizer_command()
861 memcpy(pReplyData, in visualizer_command()
873 memset(pReplyData, 0x80, visu_ctxt->capture_size); in visualizer_command()
878 memset(pReplyData, 0x80, visu_ctxt->capture_size); in visualizer_command()
883 if (pReplyData == NULL || replySize == NULL || in visualizer_command()
926 int32_t* p_int_reply_data = (int32_t*)pReplyData; in visualizer_command()
1099 void *pCmdData, uint32_t *replySize, void *pReplyData) in effect_command() argument
1123 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1128 *(int *) pReplyData = context->ops.init(context); in effect_command()
1130 *(int *) pReplyData = 0; in effect_command()
1134 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1138 *(int *) pReplyData = set_config(context, (effect_config_t *) pCmdData); in effect_command()
1141 if (pReplyData == NULL || in effect_command()
1151 get_config(context, (effect_config_t *)pReplyData); in effect_command()
1158 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1171 *(int *)pReplyData = 0; in effect_command()
1174 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1187 *(int *)pReplyData = 0; in effect_command()
1192 pReplyData == NULL || in effect_command()
1201 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + sizeof(uint32_t)); in effect_command()
1202 effect_param_t *p = (effect_param_t *)pReplyData; in effect_command()
1209 pReplyData == NULL || *replySize != sizeof(int32_t)) { in effect_command()
1213 *(int32_t *)pReplyData = 0; in effect_command()
1216 *(int32_t *)pReplyData = context->ops.set_parameter(context, p, *replySize); in effect_command()
1228 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1239 *(int *)pReplyData = 0; in effect_command()
1260 pCmdData, replySize, pReplyData); in effect_command()