Searched refs:socket_family (Results 1 – 6 of 6) sorted by relevance
/third_party/jerryscript/jerry-debugger/ |
D | jerry_client_tcp.py | 23 …def __init__(self, address, socket_family=socket.AF_INET, socket_type=socket.SOCK_STREAM, proto=0,… argument 25 self.socket = socket.socket(socket_family, socket_type, proto, fileno)
|
/third_party/glib/gio/ |
D | gsocketconnection.c | 529 GSocketFamily socket_family; member 541 h = factory->socket_family ^ (factory->socket_type << 4) ^ (factory->protocol << 8); in connection_factory_hash() 556 if (a->socket_family != b->socket_family) in connection_factory_equal() 604 factory->socket_family = family; in g_socket_connection_factory_register_type() 655 key.socket_family = family; in g_socket_connection_factory_lookup_type()
|
/third_party/glib/gio/tests/ |
D | socket-server.c | 56 GSocketFamily socket_family; in main() local 117 socket_family = G_SOCKET_FAMILY_UNIX; in main() 119 socket_family = G_SOCKET_FAMILY_IPV4; in main() 121 socket = g_socket_new (socket_family, socket_type, 0, &error); in main()
|
D | socket-client.c | 118 GSocketFamily socket_family; in make_connection() local 131 socket_family = G_SOCKET_FAMILY_UNIX; in make_connection() 133 socket_family = G_SOCKET_FAMILY_IPV4; in make_connection() 135 *socket = g_socket_new (socket_family, socket_type, 0, error); in make_connection()
|
/third_party/openssl/apps/ |
D | s_server.c | 1014 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0; in s_server_main() local 1110 if (socket_family == AF_UNIX) { in s_server_main() 1115 socket_family = AF_INET; in s_server_main() 1121 if (socket_family == AF_UNIX) { in s_server_main() 1126 socket_family = AF_INET6; in s_server_main() 1135 if (socket_family == AF_UNIX) { in s_server_main() 1136 socket_family = AF_UNSPEC; in s_server_main() 1150 if (socket_family == AF_UNIX) { in s_server_main() 1151 socket_family = AF_UNSPEC; in s_server_main() 1165 socket_family = AF_UNIX; in s_server_main() [all …]
|
D | s_client.c | 920 int socket_family = AF_UNSPEC, socket_type = SOCK_STREAM, protocol = 0; in s_client_main() local 1056 socket_family = AF_INET; in s_client_main() 1062 socket_family = AF_INET6; in s_client_main() 1088 socket_family = AF_UNIX; in s_client_main() 1632 if (socket_family == AF_UNIX && socket_type != SOCK_STREAM) { in s_client_main() 2062 if (init_client(&s, host, port, bindhost, bindport, socket_family, in s_client_main()
|