Lines Matching refs:pReplyData
283 void *pCmdData, uint32_t *replySize, void *pReplyData) { in Reverb_Command() argument
299 if (pReplyData == NULL || *replySize != sizeof(int)) { in Reverb_Command()
302 *(int *) pReplyData = Reverb_Init(pRvbModule, pReverb->m_Aux, pReverb->m_Preset); in Reverb_Command()
303 if (*(int *) pReplyData == 0) { in Reverb_Command()
309 || pReplyData == NULL || *replySize != sizeof(int)) { in Reverb_Command()
312 *(int *) pReplyData = Reverb_setConfig(pRvbModule, in Reverb_Command()
316 if (pReplyData == NULL || *replySize != sizeof(effect_config_t)) { in Reverb_Command()
325 …EFFECT_CMD_GET_PARAM pCmdData %p, *replySize %d, pReplyData: %p",pCmdData, *replySize, pReplyData); in Reverb_Command()
328 pReplyData == NULL || *replySize < (int) sizeof(effect_param_t)) { in Reverb_Command()
331 effect_param_t *rep = (effect_param_t *) pReplyData; in Reverb_Command()
332 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + sizeof(int32_t)); in Reverb_Command()
340 cmdSize, pCmdData, *replySize, pReplyData); in Reverb_Command()
342 || pReplyData == NULL || *replySize != (int)sizeof(int32_t)) { in Reverb_Command()
346 *(int *)pReplyData = Reverb_setParameter(pReverb, *(int32_t *)cmd->data, in Reverb_Command()
350 if (pReplyData == NULL || *replySize != sizeof(int)) { in Reverb_Command()
358 *(int *)pReplyData = 0; in Reverb_Command()
361 if (pReplyData == NULL || *replySize != sizeof(int)) { in Reverb_Command()
369 *(int *)pReplyData = 0; in Reverb_Command()