Home
last modified time | relevance | path

Searched refs:isSuccessCode (Results 1 – 4 of 4) sorted by relevance

/packages/modules/NetworkStack/common/captiveportal/src/android/net/captiveportal/
DCaptivePortalProbeResult.java106 return isSuccessCode(mHttpResponseCode); in isSuccessful()
113 private static boolean isSuccessCode(int responseCode) { in isSuccessCode() method in CaptivePortalProbeResult
121 return !isSuccessCode(responseCode) && (responseCode >= 200) && (responseCode <= 399); in isPortalCode()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/
DEapSimAkaAttribute.java816 public final boolean isSuccessCode; field in EapSimAkaAttribute.AtNotification
831 isSuccessCode = (notificationCode & SUCCESS_MASK) != 0; in AtNotification()
836 if (isSuccessCode && isPreSuccessfulChallenge) { in AtNotification()
847 isSuccessCode = (notificationCode & SUCCESS_MASK) != 0; in AtNotification()
852 if (isSuccessCode && isPreSuccessfulChallenge) { in AtNotification()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
DAtNotificationTest.java66 assertTrue(atNotification.isSuccessCode); in testDecode()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapSimAkaMethodStateMachine.java312 + " S=" + (atNotification.isSuccessCode ? "1" : "0") in handleEapSimAkaNotification()