HomeSort by relevance Sort by last modified time
    Searched refs:pKeyDesc (Results 1 - 6 of 6) sorted by null

  /system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
keyParserExternal.c 124 OS_802_11_KEY *pKeyDesc;
141 pKeyDesc = (OS_802_11_KEY*)pKeyData;
144 MAC_COPY (keyBuffer, pKeyDesc->BSSID);
146 if (pKeyDesc->KeyIndex & EXT_KEY_RSC_KEY_MASK)
148 os_memoryCopy(pKeyParser->hOs, &keyBuffer[MAC_ADDR_LEN], (TI_UINT8*)&(pKeyDesc->KeyRSC), KEY_RSC_LEN);
167 if((pKeyDesc->KeyLength != WEP_KEY_LEN_40) &&
168 (pKeyDesc->KeyLength != WEP_KEY_LEN_104) &&
169 (pKeyDesc->KeyLength != WEP_KEY_LEN_232) &&
170 (pKeyDesc->KeyLength != CKIP_KEY_LEN) &&
171 (pKeyDesc->KeyLength != TKIP_KEY_LEN) &&
    [all...]
keyParserWep.c 120 OS_802_11_KEY *pKeyDesc;
129 pKeyDesc = (OS_802_11_KEY*)pKeyData;
131 if ((pKeyDesc->KeyLength < MIN_KEY_LEN ) || (pKeyDesc->KeyLength >= MAX_KEY_LEN ))
133 TRACE1(pKeyParser->hReport, REPORT_SEVERITY_ERROR, "WEP_KEY_PARSER: ERROR: Key Length out of bounds=%d\n", pKeyDesc->KeyLength);
137 if (pKeyDesc->KeyIndex & WEP_KEY_REMAIN_BITS_MASK)
144 securityKey.encLen = (TI_UINT16)pKeyDesc->KeyLength;
145 securityKey.keyIndex = pKeyDesc->KeyIndex;
146 os_memoryCopy(pKeyParser->hOs, (void *)securityKey.encKey, pKeyDesc->KeyMaterial, pKeyDesc->KeyLength)
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
keyParserExternal.c 123 OS_802_11_KEY *pKeyDesc;
140 pKeyDesc = (OS_802_11_KEY*)pKeyData;
143 MAC_COPY (keyBuffer, pKeyDesc->BSSID);
145 if (pKeyDesc->KeyIndex & EXT_KEY_RSC_KEY_MASK)
147 os_memoryCopy(pKeyParser->hOs, &keyBuffer[MAC_ADDR_LEN], (TI_UINT8*)&(pKeyDesc->KeyRSC), KEY_RSC_LEN);
166 if((pKeyDesc->KeyLength != WEP_KEY_LEN_40) &&
167 (pKeyDesc->KeyLength != WEP_KEY_LEN_104) &&
168 (pKeyDesc->KeyLength != WEP_KEY_LEN_232) &&
169 (pKeyDesc->KeyLength != TKIP_KEY_LEN) &&
170 (pKeyDesc->KeyLength != AES_KEY_LEN)
    [all...]
keyParserWep.c 120 OS_802_11_KEY *pKeyDesc;
129 pKeyDesc = (OS_802_11_KEY*)pKeyData;
131 if ((pKeyDesc->KeyLength < MIN_KEY_LEN ) || (pKeyDesc->KeyLength >= MAX_KEY_LEN ))
133 TRACE1(pKeyParser->hReport, REPORT_SEVERITY_ERROR, "WEP_KEY_PARSER: ERROR: Key Length out of bounds=%d\n", pKeyDesc->KeyLength);
137 if (pKeyDesc->KeyIndex & WEP_KEY_REMAIN_BITS_MASK)
144 securityKey.encLen = (TI_UINT16)pKeyDesc->KeyLength;
145 securityKey.keyIndex = pKeyDesc->KeyIndex;
146 os_memoryCopy(pKeyParser->hOs, (void *)securityKey.encKey, pKeyDesc->KeyMaterial, pKeyDesc->KeyLength)
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/
keyParserWep.c 121 OS_802_11_KEY *pKeyDesc;
131 pKeyDesc = (OS_802_11_KEY*)pKeyData;
133 if ((pKeyDesc->KeyLength < MIN_KEY_LEN ) || (pKeyDesc->KeyLength >= MAX_KEY_LEN ))
136 ("WEP_KEY_PARSER: ERROR: Key Length out of bounds=%d\n", pKeyDesc->KeyLength));
140 if (pKeyDesc->KeyIndex & WEP_KEY_REMAIN_BITS_MASK)
148 securityKey.encLen = (UINT16)pKeyDesc->KeyLength;
149 securityKey.keyIndex = pKeyDesc->KeyIndex;
150 os_memoryCopy(pKeyParser->hOs, (void *)securityKey.encKey, pKeyDesc->KeyMaterial, pKeyDesc->KeyLength)
    [all...]
keyParserExternal.c 125 OS_802_11_KEY *pKeyDesc;
143 pKeyDesc = (OS_802_11_KEY*)pKeyData;
146 os_memoryCopy(pKeyParser->hOs, &keyBuffer[0], pKeyDesc->BSSID, MAC_ADDR_LEN);
148 if (pKeyDesc->KeyIndex & EXT_KEY_RSC_KEY_MASK)
150 os_memoryCopy(pKeyParser->hOs, &keyBuffer[MAC_ADDR_LEN], (UINT8*)&(pKeyDesc->KeyRSC), KEY_RSC_LEN);
170 if((pKeyDesc->KeyLength != WEP_KEY_LEN_40) &&
171 (pKeyDesc->KeyLength != WEP_KEY_LEN_104) &&
172 (pKeyDesc->KeyLength != WEP_KEY_LEN_232) &&
173 (pKeyDesc->KeyLength != CKIP_KEY_LEN) &&
174 (pKeyDesc->KeyLength != TKIP_KEY_LEN) &&
    [all...]

Completed in 51 milliseconds