Lines Matching refs:pAuthPref
175 PQMIWDS_AUTH_PREFERENCE pAuthPref; in WdsStartNwInterfaceReq() local
235 pAuthPref = (PQMIWDS_AUTH_PREFERENCE)(pTLV + TLVLength); in WdsStartNwInterfaceReq()
236 pAuthPref->TLVType = 0x16; in WdsStartNwInterfaceReq()
237 pAuthPref->TLVLength = cpu_to_le16(0x01); in WdsStartNwInterfaceReq()
238 pAuthPref->AuthPreference = profile_auth; // 0 ~ None, 1 ~ Pap, 2 ~ Chap, 3 ~ MsChapV2 in WdsStartNwInterfaceReq()
239 TLVLength += (le16_to_cpu(pAuthPref->TLVLength) + sizeof(QCQMICTL_TLV_HDR)); in WdsStartNwInterfaceReq()
541 PQMIWDS_AUTH_PREFERENCE pAuthPref = (PQMIWDS_AUTH_PREFERENCE)(pTLV + TLVLength); in WdsModifyProfileSettingsReq() local
542 pAuthPref->TLVType = 0x1D; in WdsModifyProfileSettingsReq()
543 pAuthPref->TLVLength = cpu_to_le16(0x01); in WdsModifyProfileSettingsReq()
544 pAuthPref->AuthPreference = profile->auth; // 0 ~ None, 1 ~ Pap, 2 ~ Chap, 3 ~ MsChapV2 in WdsModifyProfileSettingsReq()
545 TLVLength += (le16_to_cpu(pAuthPref->TLVLength) + sizeof(QCQMICTL_TLV_HDR)); in WdsModifyProfileSettingsReq()
1986 PQMIWDS_AUTH_PREFERENCE pAuthPref; in requestGetProfile() local
1998 pAuthPref = (PQMIWDS_AUTH_PREFERENCE)GetTLV(&pResponse->MUXMsg.QMUXMsgHdr, 0x1D); in requestGetProfile()
2006 if (pAuthPref/* && le16_to_cpu(pAuthPref->TLVLength)*/) { in requestGetProfile()
2007 auth = pAuthPref->AuthPreference; in requestGetProfile()