Home
last modified time | relevance | path

Searched refs:nonDigit (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DIMSIParameter.java59 int nonDigit; in build() local
61 for (nonDigit = 0; nonDigit < imsi.length(); nonDigit++) { in build()
62 stopChar = imsi.charAt(nonDigit); in build()
68 if (nonDigit == imsi.length()) { in build()
72 else if (nonDigit == imsi.length()-1 && stopChar == '*') { in build()
74 return new IMSIParameter(imsi.substring(0, nonDigit), true); in build()
/frameworks/base/wifi/java/android/net/wifi/hotspot2/pps/
DCredential.java807 int nonDigit; in verifyImsi() local
809 for (nonDigit = 0; nonDigit < mImsi.length(); nonDigit++) { in verifyImsi()
810 stopChar = mImsi.charAt(nonDigit); in verifyImsi()
816 if (nonDigit == mImsi.length()) { in verifyImsi()
819 else if (nonDigit == mImsi.length()-1 && stopChar == '*') { in verifyImsi()