Searched refs:replyData (Results 1 – 6 of 6) sorted by relevance
400 byte[] replyData = new byte[totalLength]; in handleSetPathRequest()401 replyData[0] = (byte)code; in handleSetPathRequest()402 replyData[1] = (byte)(totalLength >> 8); in handleSetPathRequest()403 replyData[2] = (byte)totalLength; in handleSetPathRequest()405 System.arraycopy(head, 0, replyData, 3, head.length); in handleSetPathRequest()411 mOutput.write(replyData); in handleSetPathRequest()500 byte[] replyData; in handleDisconnectRequest()502 replyData = new byte[3 + head.length]; in handleDisconnectRequest()504 replyData = new byte[3]; in handleDisconnectRequest()506 replyData[0] = (byte)code; in handleDisconnectRequest()[all …]
138 pContext->replyData = (char *)malloc(PROXY_REPLY_SIZE_DEFAULT); in EffectProxyCreate()153 free(pContext->replyData); in EffectProxyRelease()301 pContext->replyData = (char *)realloc(pContext->replyData, tmpSize); in Effect_command()327 subReplyData[i] = pReplyData == NULL ? NULL : pContext->replyData; in Effect_command()
77 char* replyData; // temporary buffer for non active sub effect command reply member
243 void *replyData) in command() argument254 if (replySize == NULL || *replySize != sizeof(status_t) || replyData == NULL) { in command()260 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData); in command()264 status = *(status_t *)replyData; in command()405 void *replyData) in commandExecuted() argument407 if (cmdData == NULL || replyData == NULL) { in commandExecuted()413 cmd->status = *(int32_t *)replyData; in commandExecuted()
519 void *replyData);