Home
last modified time | relevance | path

Searched refs:authType (Results 1 – 23 of 23) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/
DNfcWifiProtectedSetup.java155 short authType = payload.getShort(); in parseCredential() local
156 populateAllowedKeyManagement(result.allowedKeyManagement, authType); in parseCredential()
180 private static void populateAllowedKeyManagement(BitSet allowedKeyManagement, short authType) { in populateAllowedKeyManagement() argument
181 if (authType == AUTH_TYPE_WPA_PSK || authType == AUTH_TYPE_WPA2_PSK in populateAllowedKeyManagement()
182 || authType == AUTH_TYPE_WPA_AND_WPA2_PSK) { in populateAllowedKeyManagement()
184 } else if (authType == AUTH_TYPE_WPA_EAP || authType == AUTH_TYPE_WPA2_EAP) { in populateAllowedKeyManagement()
186 } else if (authType == AUTH_TYPE_OPEN) { in populateAllowedKeyManagement()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/anqp/eap/
DCredentialType.java52 public CredentialType(int authType, int credType) { in CredentialType() argument
53 super(authType); in CredentialType()
73 int authType = tunneled ? AuthParam.PARAM_TYPE_TUNNELED_EAP_METHOD_CREDENTIAL_TYPE in parse() local
75 return new CredentialType(authType, credType); in parse()
DExpandedEAPMethod.java42 public ExpandedEAPMethod(int authType, int vendorID, long vendorType) { in ExpandedEAPMethod() argument
43 super(authType); in ExpandedEAPMethod()
71 int authType = inner ? AuthParam.PARAM_TYPE_EXPANDED_INNER_EAP_METHOD in parse() local
73 return new ExpandedEAPMethod(authType, vendorID, vendorType); in parse()
DNonEAPInnerAuth.java54 public NonEAPInnerAuth(int authType) { in NonEAPInnerAuth() argument
56 mAuthType = authType; in NonEAPInnerAuth()
71 int authType = payload.get() & 0xFF; in parse() local
72 return new NonEAPInnerAuth(authType); in parse()
/packages/apps/Car/DebuggingRestrictionController/app/src/main/java/com/android/car/debuggingrestrictioncontroller/auth/
DSelfSignedTrustManager.java67 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument
69 trustManager.checkClientTrusted(chain, authType); in checkClientTrusted()
72 public void checkServerTrusted(X509Certificate[] chain, String authType) in checkServerTrusted() argument
74 trustManager.checkServerTrusted(chain, authType); in checkServerTrusted()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiApConfigStore.java638 int authType; in validateApWifiConfiguration() local
641 authType = apConfig.getSecurityType(); in validateApWifiConfiguration()
647 if (ApConfigUtil.isNonPasswordAP(authType)) { in validateApWifiConfiguration()
653 } else if (authType == SECURITY_TYPE_WPA2_PSK in validateApWifiConfiguration()
654 || authType == SECURITY_TYPE_WPA3_SAE_TRANSITION in validateApWifiConfiguration()
655 || authType == SECURITY_TYPE_WPA3_SAE) { in validateApWifiConfiguration()
669 if (!validateApConfigAsciiPreSharedKey(authType, preSharedKey)) { in validateApWifiConfiguration()
684 if (ApConfigUtil.isSecurityTypeRestrictedFor6gBand(authType)) { in validateApWifiConfiguration()
689 context.getResources(), authType)) { in validateApWifiConfiguration()
690 Log.d(TAG, "security type: " + authType in validateApWifiConfiguration()
[all …]
DWifiConfigManager.java1894 int authType = config.getAuthType(); in removeExcessNetworks()
1895 return !(authType == WifiConfiguration.KeyMgmt.NONE in removeExcessNetworks()
1896 || authType == WifiConfiguration.KeyMgmt.OWE); in removeExcessNetworks()
DWifiMetrics.java673 int band, int authType) { in SessionData() argument
678 mAuthType = authType; in SessionData()
/packages/modules/Wifi/service/java/com/android/server/wifi/hotspot2/
DOsuServerConnection.java612 public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument
615 Log.v(TAG, "checkClientTrusted " + authType); in checkClientTrusted()
620 public void checkServerTrusted(X509Certificate[] chain, String authType) in checkServerTrusted() argument
623 Log.v(TAG, "checkServerTrusted " + authType); in checkServerTrusted()
628 mDelegate.checkServerTrusted(chain, authType); in checkServerTrusted()
/packages/apps/Messaging/src/com/android/messaging/sms/
DApnsXmlProcessor.java247 final String authType = apnValues.getAsString(Telephony.Carriers.AUTH_TYPE); in processApn() local
248 if (authType != null) { in processApn()
249 apnValues.put(Telephony.Carriers.AUTH_TYPE, parseInt(authType, -1, "apn authtype")); in processApn()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/
DMeasurementHttpClient.java116 public void checkClientTrusted(X509Certificate[] chain, String authType) { } in getUnsafeSslSocketFactory()
117 public void checkServerTrusted(X509Certificate[] chain, String authType) { } in getUnsafeSslSocketFactory()
/packages/apps/Settings/src/com/android/settings/network/apn/
DApnStatus.kt43 val authType: Int = -1, constant in com.android.settings.network.apn.ApnData
68 Telephony.Carriers.AUTH_TYPE to authType, in getContentValueMap()
DApnEditPageProvider.kt222 selectedOptionIndex = apnData.authType, in ApnPage()
224 ) { apnData = apnData.copy(authType = it) } in ApnPage()
DApnRepository.kt85 authType = cursor.getInt(Telephony.Carriers.AUTH_TYPE), in <lambda>()
/packages/apps/KeyChain/tests/src/com/android/keychain/tests/
DKeyChainTestActivity.java308 @Override public void checkClientTrusted(X509Certificate[] chain, String authType) in checkClientTrusted() argument
311 @Override public void checkServerTrusted(X509Certificate[] chain, String authType) in checkServerTrusted() argument
/packages/apps/Settings/src/com/android/settings/wifi/addappnetworks/
DAddAppNetworksFragment.java335 final int authType = specifiedConfig.getAuthType(); in isSavedWifiConfiguration() local
341 || authType != privilegedWifiConfiguration.getAuthType()) { in isSavedWifiConfiguration()
347 switch (authType) { in isSavedWifiConfiguration()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapSimAkaMethodStateMachine.java259 byte[] processUiccAuthentication(String tag, int authType, byte[] formattedChallenge) throws in processUiccAuthentication() argument
264 mEapUiccConfig.getAppType(), authType, base64Challenge); in processUiccAuthentication()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/common/httpclient/
DAdServicesHttpsClient.java224 X509Certificate[] chain, String authType) {} in getUnsafeSslSocketFactory()
227 X509Certificate[] chain, String authType) {} in getUnsafeSslSocketFactory()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DSoftApBackupRestoreTest.java105 int authType = backup.getAuthType(); in assertWifiConfigurationEqualSoftApConfiguration() local
/packages/apps/Car/DebuggingRestrictionController/libs/
Dgoogle-http-client-1.36.0.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...
Dhttpclient-4.5.12.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
Dhttpcore-4.4.13.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
/packages/services/Car/tests/BugReportApp/libs/
Dgoogle-http-client-1.30.1.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/ ...