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

  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
keyParserWep.c 121 TSecurityKeys securityKey;
143 securityKey.keyType = KEY_WEP;
144 securityKey.encLen = (TI_UINT16)pKeyDesc->KeyLength;
145 securityKey.keyIndex = pKeyDesc->KeyIndex;
146 os_memoryCopy(pKeyParser->hOs, (void *)securityKey.encKey, pKeyDesc->KeyMaterial, pKeyDesc->KeyLength);
152 if (!((securityKey.encLen == WEP_KEY_LEN_40) || (securityKey.encLen == WEP_KEY_LEN_104)
153 || (securityKey.encLen == WEP_KEY_LEN_232)))
155 TRACE1(pKeyParser->hReport, REPORT_SEVERITY_ERROR, "WEP_KEY_PARSER: ERROR: Invalid Key length: %d !!!\n", securityKey.encLen);
161 status = pKeyParser->pParent->setDefaultKeyId(pKeyParser->pParent, (TI_UINT8)securityKey.keyIndex)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IPolicyService.aidl 23 void setAccountPolicy(long accountId, in Policy policy, String securityKey);
PolicyServiceProxy.java 71 final String securityKey) throws RemoteException {
74 mService.setAccountPolicy(accountId, policy, securityKey);
124 String securityKey) {
126 new PolicyServiceProxy(context).setAccountPolicy(accountId, policy, securityKey);
  /packages/apps/Email/src/com/android/email/service/
PolicyService.java 66 public void setAccountPolicy(long accountId, Policy policy, String securityKey) {
67 mSecurityPolicy.setAccountPolicy(accountId, policy, securityKey);
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 582 public void setAccountPolicy(long accountId, Policy policy, String securityKey) {
589 if (!policyChanged && (TextUtilities.stringOrNullEquals(securityKey,
593 setAccountPolicy(mContext, account, policy, securityKey);
    [all...]

Completed in 328 milliseconds