Lines Matching refs:response

96 * Confirms the correctness of the response message header
97 * and the response message size
100 * response_header - reference to the response message header
102 * response message
104 * response message
132 * Confirms the correctness of the GetCodeVersions response message
134 * response - reference to the response message
140 const CFG_GET_CODE_VERSIONS_RESPONSE &response)
149 codeVerLen = response.Header.Header.Length - sizeof(AMT_STATUS);
150 ptVerTypeCount = codeVerLen - sizeof(response.CodeVersions.BiosVersion)- sizeof(response.CodeVersions.VersionsCount);
151 if (response.CodeVersions.VersionsCount != (ptVerTypeCount/sizeof(AMT_VERSION_TYPE)))
157 for (i = 0; i < (response.CodeVersions.VersionsCount); i ++)
159 len = response.CodeVersions.Versions[i].Description.Length;
167 len = response.CodeVersions.Versions[i].Version.Length;
168 if (response.CodeVersions.Versions[i].Version.String[len] != '\0' ||
169 (len != strlen((CHAR *)(response.CodeVersions.Versions[i].Version.String))))
181 * GetVersions response message PTHI command
183 * response - reference to the CODE_VERSIONS struct
454 * Confirms the correctness of the GetCurrentPowerPolicy response message
456 * response - reference to the response message
461 AMT_STATUS PTHICommand::_verifyCurrentPowerPolicy(const CFG_GET_CURRENT_POWER_POLICY_RESPONSE &response)
463 ULONG ByteCount = response.Header.Header.Length;
466 + response.PolicyName.Length))
617 * Confirms the correctness of the GetDNSSuffixList response message
619 * response - reference to the response message
624 AMT_STATUS PTHICommand::_verifyGetDNSSuffixList(const CFG_GET_DNS_SUFFIX_LIST_RESPONSE &response)
626 ULONG ByteCount = response.Header.Header.Length;
629 + response.DataLength))
789 * Confirms the correctness of the GetRemoteAccessConnectionStatus response message
791 * response - reference to the response message
796 AMT_STATUS PTHICommand::_verifyRemoteAccessConnectionStatus(const CFG_GET_REMOTE_ACCESS_CONNECTION_STATUS_RESPONSE &response)
798 ULONG ByteCount = response.Header.Header.Length;
801 + response.MpsHostname.Length))
1082 * Confirms the correctness of the EnumerateHashHandles response message
1084 * response - reference to the response message
1089 AMT_STATUS PTHICommand::_verifyHashHandles(const CFG_GET_HASH_HANDLES_RESPONSE &response)
1091 ULONG ByteCount = response.Header.Header.Length;
1094 sizeof(AMT_STATUS) + sizeof(response.HashHandles.Length) + (sizeof(UINT32) * response.HashHandles.Length))
1152 * Confirms the correctness of the GetCertificateHashEntry response message
1154 * response - reference to the response message
1159 AMT_STATUS PTHICommand::_verifyGetCertificateHashEntry(const CFG_GET_CERTHASH_ENTRY_RESPONSE &response)
1161 ULONG ByteCount = response.Header.Header.Length;
1165 - sizeof(CHAR *) + response.Hash.Name.Length))
1218 * Confirms the correctness of the GetDnsSuffix response message
1220 * response - reference to the response message
1225 AMT_STATUS PTHICommand::_verifyGetDnsSuffix(const CFG_GET_PKI_FQDN_SUFFIX_RESPONSE &response)
1227 ULONG ByteCount = response.Header.Header.Length;
1230 sizeof(AMT_STATUS) + sizeof(response.Suffix.Length) + response.Suffix.Length * sizeof(CHAR))