HomeSort by relevance Sort by last modified time
    Searched refs:portStr (Results 1 - 9 of 9) sorted by null

  /system/netd/
FirewallController.cpp 114 char portStr[16];
115 sprintf(portStr, "%d", port);
126 "--sport", portStr, "-j", "RETURN", NULL);
128 "--dport", portStr, "-j", "RETURN", NULL);
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
DebuggerConnector.java 139 String portStr = (String) connectMap.get(ATTR_CONNECT_MAP_PORT);
140 if (portStr != null) {
141 Integer port = Integer.valueOf(portStr);
  /packages/apps/Settings/src/com/android/settings/
ProxySelector.java 119 String portStr = mPortField.getText().toString().trim();
121 String msg = getActivity().getString(validate(hostname, portStr, exclList));
183 String portStr = port == -1 ? "" : Integer.toString(port);
184 mPortField.setText(portStr);
243 String portStr = mPortField.getText().toString().trim();
247 int result = validate(hostname, portStr, exclList);
253 if (portStr.length() > 0) {
255 port = Integer.parseInt(portStr);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java 245 String portStr = sentBy.substring(ind + 1);
247 int port = Integer.parseInt(portStr);
  /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 671 String portStr;
673 portStr = String::number(i);
675 reinterpret_cast<const url_parse::UTF16Char*>(portStr.characters()),
676 url_parse::Component(0, portStr.length()));
    [all...]
KURL.cpp     [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 450 String portStr = mProxyPortView.getText().toString();
455 port = Integer.parseInt(portStr);
456 result = ProxySelector.validate(host, portStr, exclusionList);
    [all...]

Completed in 7604 milliseconds