Lines Matching refs:pReplyData
280 void *pCmdData, uint32_t *replySize, void *pReplyData) { in Reverb_Command() argument
296 if (pReplyData == NULL || *replySize != sizeof(int)) { in Reverb_Command()
299 *(int *) pReplyData = Reverb_Init(pRvbModule, pReverb->m_Aux, pReverb->m_Preset); in Reverb_Command()
300 if (*(int *) pReplyData == 0) { in Reverb_Command()
306 || pReplyData == NULL || *replySize != sizeof(int)) { in Reverb_Command()
309 *(int *) pReplyData = Reverb_setConfig(pRvbModule, in Reverb_Command()
313 if (pReplyData == NULL || *replySize != sizeof(effect_config_t)) { in Reverb_Command()
322 …EFFECT_CMD_GET_PARAM pCmdData %p, *replySize %d, pReplyData: %p",pCmdData, *replySize, pReplyData); in Reverb_Command()
325 pReplyData == NULL || *replySize < (int) sizeof(effect_param_t)) { in Reverb_Command()
328 effect_param_t *rep = (effect_param_t *) pReplyData; in Reverb_Command()
329 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + sizeof(int32_t)); in Reverb_Command()
337 cmdSize, pCmdData, *replySize, pReplyData); in Reverb_Command()
339 || pReplyData == NULL || *replySize != (int)sizeof(int32_t)) { in Reverb_Command()
343 *(int *)pReplyData = Reverb_setParameter(pReverb, *(int32_t *)cmd->data, in Reverb_Command()
347 if (pReplyData == NULL || *replySize != sizeof(int)) { in Reverb_Command()
355 *(int *)pReplyData = 0; in Reverb_Command()
358 if (pReplyData == NULL || *replySize != sizeof(int)) { in Reverb_Command()
366 *(int *)pReplyData = 0; in Reverb_Command()