Lines Matching refs:dnsSuffix
595 std::string dnsSuffix = current;
596 if (dnsSuffix.length() > tmp_response->DataLength)
601 if (!dnsSuffix.empty())
603 dnsSuffixList.push_back(dnsSuffix);
605 current += dnsSuffix.length() + 1;
992 * dnsSuffix AMT_ANSI_STRING structure of DNS suffix
997 AMT_STATUS PTHICommand::SetDnsSuffix(AMT_ANSI_STRING dnsSuffix)
999 if (NULL == dnsSuffix.Buffer)
1005 UINT32 msgLength = sizeof(dnsSuffix.Length) + (dnsSuffix.Length * sizeof(CHAR));
1018 memcpy(command + sizeof(SET_DNS_SUFFIX_HEADER), &(dnsSuffix.Length), sizeof(dnsSuffix.Length));
1019 memcpy(command + sizeof(SET_DNS_SUFFIX_HEADER) + sizeof(dnsSuffix.Length), dnsSuffix.Buffer, dnsSuffix.Length);
1175 * dnsSuffix - reference to the pre-allocated structure
1181 AMT_STATUS PTHICommand::GetDnsSuffix(AMT_ANSI_STRING &dnsSuffix)
1201 dnsSuffix.Length = tmp_response->Suffix.Length;
1202 dnsSuffix.Buffer = (CHAR *)malloc(dnsSuffix.Length * sizeof(CHAR));
1203 if (NULL == dnsSuffix.Buffer)
1208 memcpy(dnsSuffix.Buffer, &(tmp_response->Suffix.Buffer), dnsSuffix.Length * sizeof(CHAR));