Lines Matching refs:readBuffer
54 HECI_STATUS MNGCommand::_call(const unsigned char *command, UINT32 command_size, UINT8 **readBuffer… in _call() argument
60 if (NULL == *readBuffer) in _call()
62 *readBuffer = (UINT8 *)malloc(sizeof(UINT8) * inBuffSize); in _call()
63 if (NULL == *readBuffer) in _call()
72 memset(*readBuffer, 0, inBuffSize); in _call()
83 *outBuffSize = MNGClient.ReceiveMessage(*readBuffer, inBuffSize, 15000); in _call()
106 UINT8 *readBuffer = NULL; in GetMEInfo() local
113 &readBuffer, &replySize); in GetMEInfo()
128 if (((MNG_GET_ME_INFORMATION_RESPONSE *)readBuffer)->Version != MNG_GET_ME_INFO_Version) in GetMEInfo()
137 memcpy(&infoMsg, readBuffer, sizeof(MNG_GET_ME_INFORMATION_RESPONSE)); in GetMEInfo()
141 if (readBuffer != NULL) in GetMEInfo()
143 free(readBuffer); in GetMEInfo()