Home | History | Annotate | Download | only in net

Lines Matching defs:mPort

44     private int mPort;
72 mPort = -1;
89 mPort = Integer.parseInt(t);
112 if (mPort == 443 && mScheme.equals("")) {
114 } else if (mPort == -1) {
116 mPort = 443;
118 mPort = 80; // default
126 if ((mPort != 443 && mScheme.equals("https")) ||
127 (mPort != 80 && mScheme.equals("http"))) {
128 port = ":" + Integer.toString(mPort);
155 mPort = port;
159 return mPort;