Home
last modified time | relevance | path

Searched refs:host_port (Results 1 – 18 of 18) sorted by relevance

/third_party/node/src/
Dinspector_io.cc243 std::shared_ptr<ExclusiveAccess<HostPort>> host_port, in Start() argument
248 host_port, in Start()
258 std::shared_ptr<ExclusiveAccess<HostPort>> host_port, in InspectorIo() argument
261 host_port_(host_port), in InspectorIo()
300 ExclusiveAccess<HostPort>::Scoped host_port(host_port_); in ThreadMain() local
301 host = host_port->host(); in ThreadMain()
302 port = host_port->port(); in ThreadMain()
315 ExclusiveAccess<HostPort>::Scoped host_port(host_port_); in ThreadMain() local
316 host_port->set_port(server.Port()); in ThreadMain()
325 ExclusiveAccess<HostPort>::Scoped host_port(host_port_); in GetWsUrl() local
[all …]
Dnode_process_object.cc52 ExclusiveAccess<HostPort>::Scoped host_port(env->inspector_host_port()); in DebugPortGetter() local
53 int port = host_port->port(); in DebugPortGetter()
62 ExclusiveAccess<HostPort>::Scoped host_port(env->inspector_host_port()); in DebugPortSetter() local
63 host_port->set_port(static_cast<int>(port)); in DebugPortSetter()
Dinspector_js_api.cc283 ExclusiveAccess<HostPort>::Scoped host_port(agent->host_port()); in Open() local
284 host_port->set_port(static_cast<int>(port)); in Open()
289 ExclusiveAccess<HostPort>::Scoped host_port(agent->host_port()); in Open() local
290 host_port->set_host(*host); in Open()
Dinspector_io.h33 std::shared_ptr<ExclusiveAccess<HostPort>> host_port,
45 std::shared_ptr<ExclusiveAccess<HostPort>> host_port,
Dinspector_agent.h51 std::shared_ptr<ExclusiveAccess<HostPort>> host_port,
111 std::shared_ptr<ExclusiveAccess<HostPort>> host_port() { return host_port_; } in host_port() function
Dnode_options.cc241 &DebugOptions::host_port, in DebugOptionsParser()
969 const HostPort& host_port = in GetOptions() local
973 if (!ToV8Value(context, host_port.host()).ToLocal(&host) || in GetOptions()
977 Integer::New(isolate, host_port.port())) in GetOptions()
Dinspector_agent.cc670 std::shared_ptr<ExclusiveAccess<HostPort>> host_port, in Start() argument
674 CHECK_NOT_NULL(host_port); in Start()
675 host_port_ = host_port; in Start()
Dnode_options.h85 HostPort host_port{"127.0.0.1", kDefaultInspectorPort};
Denv.cc374 options_->debug_options().host_port); in Environment()
/third_party/cups-filters/cupsfilters/
Dipp.c212 int have_http, uri_status, host_port, i = 0, total_attrs = 0, fallback, in get_printer_attributes5() local
284 &(host_port), in get_printer_attributes5()
304 httpConnect2 (host_name, host_port, NULL, AF_UNSPEC, in get_printer_attributes5()
/third_party/openssl/ohos_lite/include/openssl/
Dbio.h689 DEPRECATEDIN_1_1_0(int BIO_get_accept_socket(char *host_port, int mode))
715 BIO *BIO_new_connect(const char *host_port);
716 BIO *BIO_new_accept(const char *host_port);
/third_party/openssl/doc/man3/
DBIO_s_accept.pod23 BIO *BIO_new_accept(char *host_port);
85 B<host_port>.
/third_party/lwip/src/apps/http/
Dhttp_client.c125 …efine HTTPC_REQ_11_PROXY_PORT_FORMAT(host, host_port, uri, srv_name) HTTPC_REQ_11_PROXY_PORT, host… argument
/third_party/python/Lib/urllib/
Dparse.py1060 host_port, path = match.groups()
1063 return host_port, path
/third_party/openssl/include/openssl/
Dbio.h.in750 OSSL_DEPRECATEDIN_1_1_0 int BIO_get_accept_socket(char *host_port, int mode);
777 BIO *BIO_new_connect(const char *host_port);
778 BIO *BIO_new_accept(const char *host_port);
/third_party/python/Doc/library/
Dsmtpd.rst41 *localaddr* and *remoteaddr* should be a :ref:`(host, port) <host_port>`
/third_party/grpc/
DBUILD.gn276 "${GRPC_DIR}/src/core/lib/gprpp/host_port.cc",
277 "${GRPC_DIR}/src/core/lib/gprpp/host_port.h",
/third_party/chromium/patch/
D0003-ohos-1115.patch12813 + std::string host_port = HostAndPort(host, port);
12814 + auto it = denieds_.find(host_port);
12825 + std::string host_port = HostAndPort(host, port);
12827 + certs_[host_port] = cert;
12828 + denieds_.erase(host_port);
12832 + std::string host_port = HostAndPort(host, port);
12833 + certs_.erase(host_port);
12834 + denieds_.insert(host_port);
12840 + std::string host_port = HostAndPort(host, port);
12841 + auto it = certs_.find(host_port);