Lines Matching refs:pReplyData
57 void *pCmdData, uint32_t *replySize, void *pReplyData);
735 void *pCmdData __unused, uint32_t *replySize, void *pReplyData) in visualizer_command() argument
741 if (pReplyData == NULL || *replySize != visu_ctxt->capture_size) { in visualizer_command()
766 memcpy(pReplyData, in visualizer_command()
769 pReplyData = (void *)((size_t)pReplyData + size); in visualizer_command()
773 memcpy(pReplyData, in visualizer_command()
785 memset(pReplyData, 0x80, visu_ctxt->capture_size); in visualizer_command()
790 memset(pReplyData, 0x80, visu_ctxt->capture_size); in visualizer_command()
826 int32_t* p_int_reply_data = (int32_t*)pReplyData; in visualizer_command()
999 void *pCmdData, uint32_t *replySize, void *pReplyData) in effect_command() argument
1023 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1028 *(int *) pReplyData = context->ops.init(context); in effect_command()
1030 *(int *) pReplyData = 0; in effect_command()
1034 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1038 *(int *) pReplyData = set_config(context, (effect_config_t *) pCmdData); in effect_command()
1041 if (pReplyData == NULL || in effect_command()
1051 get_config(context, (effect_config_t *)pReplyData); in effect_command()
1058 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1071 *(int *)pReplyData = 0; in effect_command()
1074 if (pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1087 *(int *)pReplyData = 0; in effect_command()
1092 pReplyData == NULL || in effect_command()
1101 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + sizeof(uint32_t)); in effect_command()
1102 effect_param_t *p = (effect_param_t *)pReplyData; in effect_command()
1109 pReplyData == NULL || *replySize != sizeof(int32_t)) { in effect_command()
1113 *(int32_t *)pReplyData = 0; in effect_command()
1116 *(int32_t *)pReplyData = context->ops.set_parameter(context, p, *replySize); in effect_command()
1128 || pReplyData == NULL || *replySize != sizeof(int)) { in effect_command()
1139 *(int *)pReplyData = 0; in effect_command()
1160 pCmdData, replySize, pReplyData); in effect_command()