HomeSort by relevance Sort by last modified time
    Searched full:portstr (Results 1 - 13 of 13) sorted by null

  /packages/apps/Settings/src/com/android/settings/
ProxySelector.java 115 String portStr = mPortField.getText().toString().trim();
117 String msg = getActivity().getString(validate(hostname, portStr, exclList));
179 String portStr = port == -1 ? "" : Integer.toString(port);
180 mPortField.setText(portStr);
239 String portStr = mPortField.getText().toString().trim();
243 int result = validate(hostname, portStr, exclList);
249 if (portStr.length() > 0) {
251 port = Integer.parseInt(portStr);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HopImpl.java 105 String portstr; local
107 portstr = hop.substring(colon+1,slash);
110 portstr = hop.substring(colon+1);
114 port = Integer.parseInt(portstr);
MessageProcessor.java 245 String portStr = sentBy.substring(ind + 1);
247 int port = Integer.parseInt(portStr);
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
DebuggerConnector.java 137 String portStr = (String) connectMap.get(ATTR_CONNECT_MAP_PORT);
138 if (portStr != null) {
139 Integer port = Integer.valueOf(portStr);
  /system/core/adb/
adb.c 990 char* portstr = strchr(host, ':'); local
995 if (portstr) {
996 if (portstr - host >= sizeof(hostbuf)) {
1001 hostbuf[portstr - host] = 0;
1002 if (sscanf(portstr + 1, "%d", &port) == 0) {
1003 snprintf(buffer, buffer_size, "bad port number %s", portstr);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
URI.java 687 String portStr = p_uriSpec.substring(start, index);
689 if (portStr.length() > 0)
691 for (int i = 0; i < portStr.length(); i++)
693 if (!isDigit(portStr.charAt(i)))
696 portStr + " is invalid. Port should only contain digits!");
702 port = Integer.parseInt(portStr);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
URI.java 707 String portStr = p_uriSpec.substring(start, index);
709 if (portStr.length() > 0)
711 for (int i = 0; i < portStr.length(); i++)
713 if (!isDigit(portStr.charAt(i)))
716 portStr + " is invalid. Port should only contain digits!");
722 port = Integer.parseInt(portStr);
    [all...]
  /external/webkit/Source/WebCore/platform/
KURLGoogle.cpp 672 String portStr;
674 portStr = String::number(i);
676 reinterpret_cast<const url_parse::UTF16Char*>(portStr.characters()),
677 url_parse::Component(0, portStr.length()));
    [all...]
KURL.cpp     [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 410 String portStr = mProxyPortView.getText().toString();
415 port = Integer.parseInt(portStr);
416 result = ProxySelector.validate(host, portStr, exclusionList);
  /external/netperf/
nettest_bsd.h 432 char *portstr,
nettest_bsd.c 781 set_hostname_and_port(char *hostname, char *portstr, int family, int port)
790 sprintf(portstr, "%u", port);
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp.c 3110 char portstr[PORT_MAX]; local
    [all...]

Completed in 878 milliseconds