Searched refs:notificationCode (Results 1 – 3 of 3) sorted by relevance
831 public final int notificationCode; field in EapSimAkaAttribute.AtNotification841 notificationCode = Short.toUnsignedInt(byteBuffer.getShort()); in AtNotification()844 isSuccessCode = (notificationCode & SUCCESS_MASK) != 0; in AtNotification()847 isPreSuccessfulChallenge = (notificationCode & PRE_SUCCESSFUL_CHALLENGE_MASK) != 0; in AtNotification()855 public AtNotification(int notificationCode) throws EapSimAkaInvalidAttributeException { in AtNotification() argument857 this.notificationCode = notificationCode; in AtNotification()860 isSuccessCode = (notificationCode & SUCCESS_MASK) != 0; in AtNotification()863 isPreSuccessfulChallenge = (notificationCode & PRE_SUCCESSFUL_CHALLENGE_MASK) != 0; in AtNotification()873 byteBuffer.putShort((short) notificationCode); in encode()878 String description = CODE_DEFS.getOrDefault(notificationCode, "Code not recognized"); in toString()[all …]
68 assertEquals(hexStringToInt(NOTIFICATION_CODE), atNotification.notificationCode); in testDecode()
534 + " Code=" + atNotification.notificationCode); in handleEapSimAkaNotification()