Lines Matching refs:pApnName
178 PQMIWDS_APNNAME pApnName; in WdsStartNwInterfaceReq() local
208 pApnName = (PQMIWDS_APNNAME)(pTLV + TLVLength); in WdsStartNwInterfaceReq()
209 pApnName->TLVType = 0x14; in WdsStartNwInterfaceReq()
210 pApnName->TLVLength = cpu_to_le16(strlen(profile->apn)); in WdsStartNwInterfaceReq()
211 qstrcpy((char *)&pApnName->ApnName, profile->apn); in WdsStartNwInterfaceReq()
212 TLVLength +=(le16_to_cpu(pApnName->TLVLength) + sizeof(QCQMICTL_TLV_HDR)); in WdsStartNwInterfaceReq()
514 PQMIWDS_APNNAME pApnName = (PQMIWDS_APNNAME)(pTLV + TLVLength); in WdsModifyProfileSettingsReq() local
515 pApnName->TLVType = 0x14; in WdsModifyProfileSettingsReq()
516 pApnName->TLVLength = cpu_to_le16(strlen(profile->apn)); in WdsModifyProfileSettingsReq()
517 qstrcpy((char *)&pApnName->ApnName, profile->apn); in WdsModifyProfileSettingsReq()
518 TLVLength +=(le16_to_cpu(pApnName->TLVLength) + sizeof(QCQMICTL_TLV_HDR)); in WdsModifyProfileSettingsReq()
1983 PQMIWDS_APNNAME pApnName; in requestGetProfile() local
1995 pApnName = (PQMIWDS_APNNAME)GetTLV(&pResponse->MUXMsg.QMUXMsgHdr, 0x14); in requestGetProfile()
2000 if (pApnName/* && le16_to_cpu(pApnName->TLVLength)*/) in requestGetProfile()
2001 apn = strndup((const char *)(&pApnName->ApnName), le16_to_cpu(pApnName->TLVLength)); in requestGetProfile()