Searched refs:replyData (Results 1 – 5 of 5) 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
252 void *replyData) in command() argument263 if (replySize == NULL || *replySize != sizeof(status_t) || replyData == NULL) { in command()269 status_t status = mIEffect->command(cmdCode, cmdSize, cmdData, replySize, replyData); in command()273 status = *(status_t *)replyData; in command()414 void *replyData) in commandExecuted() argument416 if (cmdData == NULL || replyData == NULL) { in commandExecuted()422 cmd->status = *(int32_t *)replyData; in commandExecuted()
525 void *replyData);