Searched refs:out_sock (Results 1 – 4 of 4) sorted by relevance
/external/boringssl/src/crypto/bio/ |
D | socket_helper.c | 41 int bio_ip_and_port_to_socket_and_addr(int *out_sock, in OPENSSL_MSVC_PRAGMA() 49 *out_sock = -1; in OPENSSL_MSVC_PRAGMA() 72 *out_sock = socket(cur->ai_family, cur->ai_socktype, cur->ai_protocol); in OPENSSL_MSVC_PRAGMA() 73 if (*out_sock < 0) { in OPENSSL_MSVC_PRAGMA()
|
D | internal.h | 84 int bio_ip_and_port_to_socket_and_addr(int *out_sock,
|
/external/boringssl/src/tool/ |
D | transport_common.h | 29 bool Connect(int *out_sock, const std::string &hostname_and_port); 41 bool Accept(int *out_sock);
|
D | transport_common.cc | 138 bool Connect(int *out_sock, const std::string &hostname_and_port) { in Connect() argument 162 *out_sock = in Connect() 164 if (*out_sock < 0) { in Connect() 188 if (connect(*out_sock, result->ai_addr, result->ai_addrlen) != 0) { in Connect() 251 bool Listener::Accept(int *out_sock) { in Accept() argument 254 *out_sock = accept(server_sock_, (struct sockaddr *)&addr, &addr_len); in Accept() 255 return *out_sock >= 0; in Accept()
|