Lines Matching refs:pReplyData
438 void *pCmdData, uint32_t *replySize, void *pReplyData) { in DP_command() argument
450 if (pReplyData == NULL || *replySize != sizeof(int)) { in DP_command()
454 *(int *) pReplyData = DP_init(pContext); in DP_command()
458 || pReplyData == NULL || replySize == NULL || *replySize != sizeof(int)) { in DP_command()
462 *(int *) pReplyData = DP_setConfig(pContext, in DP_command()
466 if (pReplyData == NULL || in DP_command()
471 DP_getConfig(pContext, (effect_config_t *)pReplyData); in DP_command()
477 if (pReplyData == NULL || replySize == NULL || *replySize != sizeof(int)) { in DP_command()
483 *(int *)pReplyData = -ENOSYS; in DP_command()
487 *(int *)pReplyData = 0; in DP_command()
491 if (pReplyData == NULL || replySize == NULL || *replySize != sizeof(int)) { in DP_command()
497 *(int *)pReplyData = -ENOSYS; in DP_command()
501 *(int *)pReplyData = 0; in DP_command()
505 if (pCmdData == NULL || pReplyData == NULL || replySize == NULL) { in DP_command()
519 memcpy(pReplyData, pCmdData, expectedCmdSize); in DP_command()
520 effect_param_t *p = (effect_param_t *)pReplyData; in DP_command()
537 pReplyData == NULL || replySize == NULL || *replySize != sizeof(int32_t)) { in DP_command()
546 *(int *)pReplyData = DP_setParameter(pContext, in DP_command()
556 if (pReplyData == NULL || replySize == NULL || *replySize < ((int)sizeof(int32_t) * 2)) { in DP_command()
592 memcpy(pReplyData, volRet, sizeof(volRet)); in DP_command()