Lines Matching refs:pUserName
176 PQMIWDS_USERNAME pUserName; in WdsStartNwInterfaceReq() local
217 pUserName = (PQMIWDS_USERNAME)(pTLV + TLVLength); in WdsStartNwInterfaceReq()
218 pUserName->TLVType = 0x17; in WdsStartNwInterfaceReq()
219 pUserName->TLVLength = cpu_to_le16(strlen(profile_user)); in WdsStartNwInterfaceReq()
220 qstrcpy((char *)&pUserName->UserName, profile_user); in WdsStartNwInterfaceReq()
221 TLVLength += (le16_to_cpu(pUserName->TLVLength) + sizeof(QCQMICTL_TLV_HDR)); in WdsStartNwInterfaceReq()
523 PQMIWDS_USERNAME pUserName = (PQMIWDS_USERNAME)(pTLV + TLVLength); in WdsModifyProfileSettingsReq() local
524 pUserName->TLVType = 0x1B; in WdsModifyProfileSettingsReq()
525 pUserName->TLVLength = cpu_to_le16(strlen(profile->user)); in WdsModifyProfileSettingsReq()
526 qstrcpy((char *)&pUserName->UserName, profile->user); in WdsModifyProfileSettingsReq()
527 TLVLength += (le16_to_cpu(pUserName->TLVLength) + sizeof(QCQMICTL_TLV_HDR)); in WdsModifyProfileSettingsReq()
1984 PQMIWDS_USERNAME pUserName; in requestGetProfile() local
1996 pUserName = (PQMIWDS_USERNAME)GetTLV(&pResponse->MUXMsg.QMUXMsgHdr, 0x1B); in requestGetProfile()
2002 if (pUserName/* && pUserName->UserName*/) in requestGetProfile()
2003 user = strndup((const char *)(&pUserName->UserName), le16_to_cpu(pUserName->TLVLength)); in requestGetProfile()