Home | History | Annotate | Download | only in net

Lines Matching refs:mScheme

43     private String mScheme;
71 mScheme = "";
81 if (t != null) mScheme = t.toLowerCase(Locale.ROOT);
113 if (mPort == 443 && mScheme.equals("")) {
114 mScheme = "https";
116 if (mScheme.equals("https"))
121 if (mScheme.equals("")) mScheme = "http";
127 if ((mPort != 443 && mScheme.equals("https")) ||
128 (mPort != 80 && mScheme.equals("http"))) {
136 return mScheme + "://" + authInfo + mHost + port + mPath;
140 mScheme = scheme;
144 return mScheme;