Home
last modified time | relevance | path

Searched refs:port (Results 1026 - 1050 of 2043) sorted by relevance

1...<<41424344454647484950>>...82

/third_party/node/src/
H A Dnode_sockaddr.h47 // Returns true if converting {family, host, port} to *addr succeeded.
51 uint32_t port,
54 // Returns true if converting {family, host, port} to *addr succeeded.
58 uint32_t port,
63 uint32_t port,
66 // Returns the port for an IPv4 or IPv6 address.
95 inline int port() const;
/third_party/node/test/common/
H A Dinspector-helper.js375 ['--expose-internals', '--inspect-port=0'],
404 return this.portPromise.then((port) => new Promise((resolve, reject) => {
405 const req = http.get({ host, port, family: 4, path, headers }, (res) => {
428 const port = await this.portPromise;
430 port,
/third_party/node/deps/cares/src/lib/
H A Dares_private.h423 ares_status_t ares_append_ai_node(int aftype, unsigned short port,
432 unsigned short port,
442 ares_status_t ares__addrinfo_localhost(const char *name, unsigned short port,
494 unsigned short port,
/third_party/lwip/src/netif/ppp/
H A Dpppapi.c219 msg->msg.msg.l2tpcreate.netif, API_EXPR_REF(msg->msg.msg.l2tpcreate.ipaddr), msg->msg.msg.l2tpcreate.port, in pppapi_do_pppol2tp_create()
236 pppapi_pppol2tp_create(struct netif *pppif, struct netif *netif, ip_addr_t *ipaddr, u16_t port, in pppapi_pppol2tp_create() argument
252 PPPAPI_VAR_REF(msg).msg.msg.l2tpcreate.port = port; in pppapi_pppol2tp_create()
/third_party/musl/Benchmark/musl/
H A Dsocket_test.cpp24 constexpr int PORT = 1500; // port
245 static int ConnectTo(const char *host, const char *port, int socktype, struct addrinfo *addr) in ConnectTo() argument
255 int n = getaddrinfo(host, port, &hint, &res); in ConnectTo()
291 static int BindAt(const char *port) in BindAt() argument
301 int n = getaddrinfo("127.0.0.1", port, &hint, &res); in BindAt()
/third_party/node/deps/openssl/openssl/apps/lib/
H A Dhttp_server.c219 BIO *http_server_init_bio(const char *prog, const char *port) in http_server_init_bio() argument
230 || BIO_set_accept_port(acbio, port) < 0) { in http_server_init_bio()
242 /* Report back what address and port are used */ in http_server_init_bio()
286 const char *prog, const char *port, in http_server_get_asn1_req()
302 "Awaiting new connection on port %s...", port); in http_server_get_asn1_req()
283 http_server_get_asn1_req(const ASN1_ITEM *it, ASN1_VALUE **preq, char **ppath, BIO **pcbio, BIO *acbio, int *found_keep_alive, const char *prog, const char *port, int accept_get, int timeout) http_server_get_asn1_req() argument
/third_party/pulseaudio/src/pulse/
H A Dintrospect.h230 /** Stores information about a specific port of a sink. Please
234 const char *name; /**< Name of this port */
235 const char *description; /**< Description of this port */
236 uint32_t priority; /**< The higher this value is, the more useful this port is as a default. */
237 int available; /**< A flags (see #pa_port_available), indicating availability status of this port. \since 2.0 */
247 * then activate the user-chosen port.
249 * May be NULL, in which case the port is not part of any availability group.
287 uint32_t n_ports; /**< Number of entries in port array \since 0.9.16 */
289 pa_sink_port_info* active_port; /**< Pointer to active port in the array, or NULL. \since 0.9.16 */
325 pa_operation* pa_context_set_sink_port_by_index(pa_context *c, uint32_t idx, const char*port, pa_context_success_cb_
[all...]
/third_party/openssl/apps/lib/
H A Dhttp_server.c219 BIO *http_server_init_bio(const char *prog, const char *port) in http_server_init_bio() argument
230 || BIO_set_accept_port(acbio, port) < 0) { in http_server_init_bio()
242 /* Report back what address and port are used */ in http_server_init_bio()
286 const char *prog, const char *port, in http_server_get_asn1_req()
302 "Awaiting new connection on port %s...", port); in http_server_get_asn1_req()
283 http_server_get_asn1_req(const ASN1_ITEM *it, ASN1_VALUE **preq, char **ppath, BIO **pcbio, BIO *acbio, int *found_keep_alive, const char *prog, const char *port, int accept_get, int timeout) http_server_get_asn1_req() argument
/third_party/skia/third_party/externals/microhttpd/src/examples/
H A Ddemo.c840 * @param argv first and only argument should be the port number
847 unsigned int port; in main() local
850 (1 != sscanf (argv[1], "%u", &port)) || in main()
851 (UINT16_MAX < port) ) in main()
882 port, in main()
H A Ddemo_https.c891 * @param argv first and only argument should be the port number
898 unsigned int port; in main() local
901 (1 != sscanf (argv[1], "%u", &port)) || in main()
902 (UINT16_MAX < port) ) in main()
933 port, in main()
/third_party/toybox/toys/pending/
H A Dtcpsvd.c225 unsigned long port; in create_bind_sock() local
228 port = strtoul(toys.optargs[1], &ptr, 10); in create_bind_sock()
229 if (errno || port > 65535) in create_bind_sock()
230 error_exit("Invalid port, Range is [0-65535]"); in create_bind_sock()
233 sprintf(toybuf, "%lu", port); in create_bind_sock()
/third_party/vk-gl-cts/scripts/
H A Drun_nightly.py267 # \note Not 100%-proof method as other apps may grab this port before we launch execserver
270 addr, port = s.getsockname()
272 return port
284 port = getUnusedPort()
299 '--port=%d' % port,
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/
H A Dradius_das.c512 static int radius_das_open_socket(int port) in radius_das_open_socket() argument
525 addr.sin_port = htons(port); in radius_das_open_socket()
541 if (conf->port == 0 || conf->shared_secret == NULL || in radius_das_init()
568 das->sock = radius_das_open_socket(conf->port); in radius_das_init()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/radius/
H A Dradius_das.c512 static int radius_das_open_socket(int port) in radius_das_open_socket() argument
525 addr.sin_port = htons(port); in radius_das_open_socket()
541 if (conf->port == 0 || conf->shared_secret == NULL || in radius_das_init()
568 das->sock = radius_das_open_socket(conf->port); in radius_das_init()
/foundation/CastEngine/castengine_wifi_display/tests/unittest/impl/rtp/mock/
H A Dmock_rtp_server.h28 MOCK_METHOD(bool, Start, (uint16_t port, const std::string &host, bool enableReuse, uint32_t backlog));
/foundation/CastEngine/castengine_wifi_display/services/network/interfaces/
H A Diserver.h34 virtual bool Start(uint16_t port, const std::string &host, bool enableReuse = true, uint32_t backlog = 1000) = 0;
/foundation/CastEngine/castengine_wifi_display/services/network/socket/
H A Dudp_socket.h30 bool Bind(const uint16_t port, const std::string &host, bool enableReuse = true,
H A Dtcp_socket.h30 bool Bind(const uint16_t port, const std::string &host, bool enableReuse = true,
H A Dbase_socket.h31 virtual bool Bind(const uint16_t port, const std::string &host, bool enableReuse = true,
/foundation/CastEngine/castengine_wifi_display/tests/unittest/impl/session/mock/
H A Dmock_server.h28 MOCK_METHOD(bool, Start, (uint16_t port, const std::string &host, bool enableReuse, uint32_t backlog));
/foundation/bundlemanager/app_domain_verify/interfaces/inner_api/common/include/
H A Dskill_uri.h30 std::string port; member
/foundation/arkui/ui_lite/test/autotest/include/
H A Dtcp_socket.h27 const quint16 port = 23495; variable
/foundation/communication/netmanager_base/frameworks/js/napi/connection/options/include/
H A Dnet_address.h41 void SetPort(uint16_t port);
/foundation/communication/netmanager_ext/interfaces/innerkits/mdnsclient/include/
H A Dmdns_service_info.h39 int32_t port = -1; member
/foundation/communication/netstack/frameworks/js/napi/socket/options/include/
H A Dsocket_remote_info.h36 void SetPort(uint16_t port);

Completed in 14 milliseconds

1...<<41424344454647484950>>...82