HomeSort by relevance Sort by last modified time
    Searched defs:IMSIParameter (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/Osu/src/com/android/hotspot2/
IMSIParameter.java 5 public class IMSIParameter {
9 public IMSIParameter(String imsi, boolean prefix) {
14 public IMSIParameter(String imsi) throws IOException {
77 IMSIParameter that = (IMSIParameter) thatObject;
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
IMSIParameter.java 26 public class IMSIParameter {
38 public IMSIParameter(String imsi, boolean prefix) {
44 * Build an IMSIParameter object from the given string. A null will be returned for a
48 * @return {@link IMSIParameter}
50 public static IMSIParameter build(String imsi) {
70 return new IMSIParameter(imsi, false);
74 return new IMSIParameter(imsi.substring(0, nonDigit), true);
125 if (!(thatObject instanceof IMSIParameter)) {
129 IMSIParameter that = (IMSIParameter) thatObject
    [all...]

Completed in 66 milliseconds