Lines Matching refs:pReplyData
525 void *pReplyData) in fx_command() argument
536 if (pReplyData == NULL || *replySize != sizeof(int)) in fx_command()
539 *(int *)pReplyData = 0; in fx_command()
545 pReplyData == NULL|| in fx_command()
550 *(int *)pReplyData = session_set_config(effect->session, (effect_config_t *)pCmdData); in fx_command()
551 if (*(int *)pReplyData != 0) in fx_command()
555 *(int *)pReplyData = effect_set_state(effect, EFFECT_STATE_CONFIG); in fx_command()
560 if (pReplyData == NULL || in fx_command()
566 session_get_config(effect->session, (effect_config_t *)pReplyData); in fx_command()
575 pReplyData == NULL || in fx_command()
584 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + p->psize); in fx_command()
585 p = (effect_param_t *)pReplyData; in fx_command()
593 pReplyData == NULL || in fx_command()
604 *(int *)pReplyData = -ENOSYS; in fx_command()
608 if (pReplyData == NULL || *replySize != sizeof(int)) { in fx_command()
612 *(int *)pReplyData = effect_set_state(effect, EFFECT_STATE_ACTIVE); in fx_command()
616 if (pReplyData == NULL || *replySize != sizeof(int)) { in fx_command()
620 *(int *)pReplyData = effect_set_state(effect, EFFECT_STATE_CONFIG); in fx_command()