Home | History | Annotate | Download | only in net

Lines Matching defs:mScheme

48     private String mScheme;
76 mScheme = "";
86 if (t != null) mScheme = t.toLowerCase(Locale.ROOT);
118 if (mPort == 443 && mScheme.equals("")) {
119 mScheme = "https";
121 if (mScheme.equals("https"))
126 if (mScheme.equals("")) mScheme = "http";
132 if ((mPort != 443 && mScheme.equals("https")) ||
133 (mPort != 80 && mScheme.equals("http"))) {
141 return mScheme + "://" + authInfo + mHost + port + mPath;
146 mScheme = scheme;
151 return mScheme;