Searched refs:fullIMSI (Results 1 - 2 of 2) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DIMSIParameter.java82 * @param fullIMSI The full IMSI to match against
85 public boolean matchesImsi(String fullIMSI) { argument
86 if (fullIMSI == null) {
92 return mImsi.regionMatches(false, 0, fullIMSI, 0, mImsi.length());
95 return mImsi.equals(fullIMSI);
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DIMSIParameter.java39 public boolean matches(String fullIMSI) { argument
41 return mImsi.regionMatches(false, 0, fullIMSI, 0, mImsi.length());
43 return mImsi.equals(fullIMSI);

Completed in 27 milliseconds