Lines Matching refs:pReplyData
512 void *pReplyData) in fx_command() argument
523 if (pReplyData == NULL || *replySize != sizeof(int)) in fx_command()
526 *(int *)pReplyData = 0; in fx_command()
532 pReplyData == NULL|| in fx_command()
537 *(int *)pReplyData = session_set_config(effect->session, (effect_config_t *)pCmdData); in fx_command()
538 if (*(int *)pReplyData != 0) in fx_command()
542 *(int *)pReplyData = effect_set_state(effect, EFFECT_STATE_CONFIG); in fx_command()
547 if (pReplyData == NULL || in fx_command()
553 session_get_config(effect->session, (effect_config_t *)pReplyData); in fx_command()
562 pReplyData == NULL || in fx_command()
571 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + p->psize); in fx_command()
572 p = (effect_param_t *)pReplyData; in fx_command()
580 pReplyData == NULL || in fx_command()
591 *(int *)pReplyData = -ENOSYS; in fx_command()
595 if (pReplyData == NULL || *replySize != sizeof(int)) { in fx_command()
599 *(int *)pReplyData = effect_set_state(effect, EFFECT_STATE_ACTIVE); in fx_command()
603 if (pReplyData == NULL || *replySize != sizeof(int)) { in fx_command()
607 *(int *)pReplyData = effect_set_state(effect, EFFECT_STATE_CONFIG); in fx_command()