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