Lines Matching refs:pReplyData
351 void *pCmdData, uint32_t *replySize, void *pReplyData) { in LE_command() argument
362 if (pReplyData == NULL || *replySize != sizeof(int)) { in LE_command()
365 *(int *) pReplyData = LE_init(pContext); in LE_command()
369 || pReplyData == NULL || replySize == NULL || *replySize != sizeof(int)) { in LE_command()
372 *(int *) pReplyData = LE_setConfig(pContext, in LE_command()
376 if (pReplyData == NULL || in LE_command()
380 LE_getConfig(pContext, (effect_config_t *)pReplyData); in LE_command()
386 if (pReplyData == NULL || replySize == NULL || *replySize != sizeof(int)) { in LE_command()
394 *(int *)pReplyData = 0; in LE_command()
397 if (pReplyData == NULL || *replySize != sizeof(int)) { in LE_command()
405 *(int *)pReplyData = 0; in LE_command()
410 pReplyData == NULL || replySize == NULL || in LE_command()
414 memcpy(pReplyData, pCmdData, sizeof(effect_param_t) + sizeof(uint32_t)); in LE_command()
415 effect_param_t *p = (effect_param_t *)pReplyData; in LE_command()
436 pReplyData == NULL || replySize == NULL || *replySize != sizeof(int32_t)) { in LE_command()
439 *(int32_t *)pReplyData = 0; in LE_command()
442 *(int32_t *)pReplyData = -EINVAL; in LE_command()
452 *(int32_t *)pReplyData = -EINVAL; in LE_command()