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

  /system/core/libcutils/
socket_network_client_windows.cpp 44 char port_str[16]; local
45 snprintf(port_str, sizeof(port_str), "%d", port);
46 if (getaddrinfo(host, port_str, &hints, &address) != 0 || address == NULL) {
socket_network_client_unix.cpp 53 char port_str[16]; local
54 snprintf(port_str, sizeof(port_str), "%d", port);
57 *getaddrinfo_error = getaddrinfo(host, port_str, &hints, &addrs);
  /system/core/base/
parsenetaddress.cpp 35 std::string port_str; local
43 port_str = address.substr(address.rfind("]:") + 2);
54 port_str = pieces[1];
65 if (sscanf(port_str.c_str(), "%d", port) != 1 || *port <= 0 ||
67 *error = StringPrintf("bad port number '%s' in '%s'", port_str.c_str(),
  /external/boringssl/src/crypto/bio/
internal.h 83 // on |port_str|. It returns one on success or zero on error.
88 const char *port_str);
socket_helper.c 43 const char *port_str) {
53 ret = getaddrinfo(hostname, port_str, &hint, &result);
connect.c 526 int BIO_set_conn_port(BIO *bio, const char *port_str) {
527 return BIO_ctrl(bio, BIO_C_SET_CONNECT, 1, (void*) port_str);
  /external/autotest/client/cros/cellular/
ether_io_rf_switch.py 126 port_str = 'Invalid'
128 port_str = str(port)
129 print 'Port %s (0x%x)' % (port_str, raw_status)
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface_udp.c 381 char port_str[40]; local
450 os_snprintf(port_str, sizeof(port_str), "udp:%d", port);
452 wpa_s->conf->ctrl_interface = os_strdup(port_str);
  /external/libvncserver/libvncserver/
sockets.c 899 char port_str[8];
901 snprintf(port_str, 8, "%d", port);
908 if ((rv = getaddrinfo(iface, port_str, &hints, &servinfo)) != 0) {
972 char port_str[8]; local
974 snprintf(port_str, 8, "%d", port);
980 if ((rv = getaddrinfo(host, port_str, &hints, &servinfo)) != 0) {
  /external/libvncserver/libvncclient/
sockets.c 544 char port_str[8]; local
546 snprintf(port_str, 8, "%d", port);
556 if ((rv = getaddrinfo(address, port_str, &hints, &servinfo)) != 0) {
  /external/opencv/
cvjni.cpp 46 jstring port_str,
55 const char *port_chars = env->GetStringUTFChars(port_str, 0);
64 env->ReleaseStringUTFChars(port_str, port_chars);
cvjni.h 70 jstring port_str,
  /system/update_engine/common/
http_fetcher_unittest.cc 81 string port_str = (port ? base::StringPrintf(":%hu", port) : ""); local
82 return base::StringPrintf("http://127.0.0.1%s%s", port_str.c_str(),
156 string port_str = line.substr(listening_msg_prefix_len); local
157 port_str.resize(port_str.find('\n'));
158 EXPECT_TRUE(base::StringToUint(port_str, &port_));
    [all...]
  /system/core/adb/
sysdeps_win32.cpp 848 char port_str[16]; local
849 snprintf(port_str, sizeof(port_str), "%d", port);
860 if (getaddrinfo(host.c_str(), port_str, &hints, &addrinfo_ptr) != 0) {
863 host.c_str(), port_str,
892 *error = android::base::StringPrintf("cannot connect to %s:%s: %s", host.c_str(), port_str,
895 port_str, error->c_str());
    [all...]
  /external/curl/tests/server/
sws.c 1997 char port_str[11]; local
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/client/
main_wnd.cc 326 std::string port_str(GetWindowText(edit2_));
327 int port = port_str.length() ? atoi(port_str.c_str()) : 0;
  /external/boringssl/src/include/openssl/
bio.h 545 // BIO_set_conn_port sets |port_str| as the port or service name that |bio|
547 OPENSSL_EXPORT int BIO_set_conn_port(BIO *bio, const char *port_str);
    [all...]
  /external/selinux/python/semanage/
seobject.py     [all...]
  /external/selinux/libsepol/src/
kernel_to_cil.c 2847 char port_str[4]; local
    [all...]
kernel_to_conf.c 2709 char port_str[4]; local
    [all...]
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c 3177 char port_str[40], *tmp; local
    [all...]

Completed in 595 milliseconds