/third_party/jerryscript/jerry-debugger/ |
H A D | jerry_client_tcp.py | 23 def __init__(self, address, socket_family=socket.AF_INET, socket_type=socket.SOCK_STREAM, proto=0, fileno=None): 25 self.socket = socket.socket(socket_family, socket_type, proto, fileno)
|
/third_party/curl/tests/server/ |
H A D | socksd.c | 146 static const char *socket_type = "IPv4"; variable 1023 socket_type = "IPv6"; in main() 1030 socket_type = "IPv4"; in main() 1047 socket_type = "unix"; in main() 1116 logmsg("Running %s version", socket_type); in main()
|
H A D | sws.c | 1967 const char *socket_type = "IPv4"; in main() local 2020 socket_type = "IPv4"; in main() 2027 socket_type = "IPv6"; in main() 2044 socket_type = "unix"; in main() 2120 is_proxy ? "-proxy" : "", socket_type); in main() 2243 protocol_type, socket_type, location_str); in main() 2449 socket_type, location_str, (long)getpid(), exit_signal); in main()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | s_client.c | 824 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0; in s_client_main() local 1208 socket_type = SOCK_STREAM; in s_client_main() 1216 socket_type = SOCK_STREAM; in s_client_main() 1224 socket_type = SOCK_STREAM; in s_client_main() 1232 socket_type = SOCK_STREAM; in s_client_main() 1240 socket_type = SOCK_STREAM; in s_client_main() 1248 socket_type = SOCK_DGRAM; in s_client_main() 1257 socket_type = SOCK_DGRAM; in s_client_main() 1266 socket_type = SOCK_DGRAM; in s_client_main() 1578 if (socket_family == AF_UNIX && socket_type ! in s_client_main() [all...] |
H A D | s_server.c | 1007 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0; in s_server_main() local 1501 socket_type = SOCK_DGRAM; in s_server_main() 1509 socket_type = SOCK_DGRAM; in s_server_main() 1517 socket_type = SOCK_DGRAM; in s_server_main() 1664 if (www && socket_type == SOCK_DGRAM) { in s_server_main() 1669 if (dtlslisten && socket_type != SOCK_DGRAM) { in s_server_main() 1674 if (rev && socket_type == SOCK_DGRAM) { in s_server_main() 1680 if (stateless && socket_type != SOCK_STREAM) { in s_server_main() 1686 if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) { in s_server_main() 1700 if (socket_type ! in s_server_main() [all...] |
/third_party/openssl/apps/ |
H A D | s_client.c | 824 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0; in s_client_main() local 1208 socket_type = SOCK_STREAM; in s_client_main() 1216 socket_type = SOCK_STREAM; in s_client_main() 1224 socket_type = SOCK_STREAM; in s_client_main() 1232 socket_type = SOCK_STREAM; in s_client_main() 1240 socket_type = SOCK_STREAM; in s_client_main() 1248 socket_type = SOCK_DGRAM; in s_client_main() 1257 socket_type = SOCK_DGRAM; in s_client_main() 1266 socket_type = SOCK_DGRAM; in s_client_main() 1578 if (socket_family == AF_UNIX && socket_type ! in s_client_main() [all...] |
H A D | s_server.c | 1007 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0; in s_server_main() local 1501 socket_type = SOCK_DGRAM; in s_server_main() 1509 socket_type = SOCK_DGRAM; in s_server_main() 1517 socket_type = SOCK_DGRAM; in s_server_main() 1664 if (www && socket_type == SOCK_DGRAM) { in s_server_main() 1669 if (dtlslisten && socket_type != SOCK_DGRAM) { in s_server_main() 1675 if (stateless && socket_type != SOCK_STREAM) { in s_server_main() 1681 if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) { in s_server_main() 1695 if (socket_type != SOCK_DGRAM) { in s_server_main() 1700 socket_type in s_server_main() [all...] |
/third_party/python/Lib/ |
H A D | socketserver.py | 188 - socket_type 426 - socket_type 441 socket_type = socket.SOCK_STREAM variable in TCPServer 453 self.socket_type) 530 socket_type = socket.SOCK_DGRAM variable in UDPServer
|
/third_party/ltp/testcases/network/xinetd/ |
H A D | xinetd_tests.sh | 47 socket_type = stream
|
/third_party/python/Modules/ |
H A D | _ssl.c | 312 enum py_ssl_server_or_client socket_type; member 785 enum py_ssl_server_or_client socket_type, in newPySSLSocket() 794 if ((socket_type == PY_SSL_SERVER) && in newPySSLSocket() 801 if ((socket_type == PY_SSL_CLIENT) && in newPySSLSocket() 858 if (socket_type == PY_SSL_SERVER) { in newPySSLSocket() 891 if (socket_type == PY_SSL_CLIENT) in newPySSLSocket() 897 self->socket_type = socket_type; in newPySSLSocket() 1887 if (self->socket_type == PY_SSL_SERVER) { in _ssl__SSLSocket_get_unverified_chain_impl() 2175 return PyBool_FromLong(self->socket_type in PySSL_get_server_side() 784 newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock, enum py_ssl_server_or_client socket_type, char *server_hostname, PyObject *owner, PyObject *session, PySSLMemoryBIO *inbio, PySSLMemoryBIO *outbio) newPySSLSocket() argument [all...] |
/third_party/rust/crates/libc/src/windows/ |
H A D | mod.rs | 563 pub fn socket(af: ::c_int, socket_type: ::c_int, protocol: ::c_int) -> SOCKET; in socket()
|