Searched refs:socket (Results 1 - 25 of 664) sorted by relevance

1234567891011>>

/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
H A Dsocket.h1 #include <asm-generic/socket.h>
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
H A Dsocketvar.h3 #include <sys/socket.h>
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
H A Dsocket.h1 #include <asm-generic/socket.h>
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
H A Dsocketvar.h3 #include <sys/socket.h>
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
H A Dun.h4 #include <linux/socket.h>
H A Dnet.h21 #include <linux/socket.h>
22 #include <asm/socket.h>
49 SS_UNCONNECTED, /* unconnected to any socket */
51 SS_CONNECTED, /* connected to socket */
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netatalk/
H A Dat.h26 #include <sys/socket.h>
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_socket.py7 import socket namespace
21 def try_address(host, port=0, family=socket.AF_INET):
22 """Try to bind a socket on the given host:port and return True
25 sock = socket.socket(family, socket.SOCK_STREAM)
27 except (socket.error, socket.gaierror):
35 SUPPORTS_IPV6 = socket.has_ipv6 and try_address('::1', family=socket
[all...]
H A Dtest_timeout.py1 """Unit tests for socket timeout feature."""
10 import socket namespace
14 """Test case for socket.gettimeout() and socket.settimeout()"""
17 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
91 """Test case for socket.socket() timeou
[all...]
H A Dtest_ssl.py7 import socket namespace
40 ssl.sslwrap_simple(socket.socket(socket.AF_INET))
47 ssl.sslwrap_simple(socket.socket(socket.AF_INET)._sock)
67 s = socket.socket(socket
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_socket.py7 import socket namespace
21 def try_address(host, port=0, family=socket.AF_INET):
22 """Try to bind a socket on the given host:port and return True
25 sock = socket.socket(family, socket.SOCK_STREAM)
27 except (socket.error, socket.gaierror):
35 SUPPORTS_IPV6 = socket.has_ipv6 and try_address('::1', family=socket
[all...]
H A Dtest_timeout.py1 """Unit tests for socket timeout feature."""
10 import socket namespace
14 """Test case for socket.gettimeout() and socket.settimeout()"""
17 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
91 """Test case for socket.socket() timeou
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_socket.py7 import socket namespace
21 def try_address(host, port=0, family=socket.AF_INET):
22 """Try to bind a socket on the given host:port and return True
25 sock = socket.socket(family, socket.SOCK_STREAM)
27 except (socket.error, socket.gaierror):
35 SUPPORTS_IPV6 = socket.has_ipv6 and try_address('::1', family=socket
[all...]
H A Dtest_timeout.py1 """Unit tests for socket timeout feature."""
10 import socket namespace
14 """Test case for socket.gettimeout() and socket.settimeout()"""
17 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
91 """Test case for socket.socket() timeou
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_socket.py7 import socket namespace
21 def try_address(host, port=0, family=socket.AF_INET):
22 """Try to bind a socket on the given host:port and return True
25 sock = socket.socket(family, socket.SOCK_STREAM)
27 except (socket.error, socket.gaierror):
35 SUPPORTS_IPV6 = socket.has_ipv6 and try_address('::1', family=socket
[all...]
H A Dtest_timeout.py1 """Unit tests for socket timeout feature."""
10 import socket namespace
14 """Test case for socket.gettimeout() and socket.settimeout()"""
17 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
91 """Test case for socket.socket() timeou
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/caif/
H A Dif_caif.h11 #include <linux/socket.h>
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A DSocketServer.py1 """Generic socket server classes.
5 For socket-based servers:
10 - others, e.g. AF_DECNET are conceivable (see <socket.h>
11 - socket type:
15 For request-based servers (including socket-based):
132 import socket namespace
146 if hasattr(socket, "AF_UNIX"):
200 - socket
232 # connecting to the socket to wake this up instead of
269 # Support people who used socket
[all...]
H A Dasyncore.py28 """Basic infrastructure for asynchronous socket service clients and servers.
50 import socket namespace
115 except socket.error, e:
243 # get a socket from a blocking source.
247 # The constructor no longer requires that the socket
251 except socket.error, err:
254 # socket.
257 # The socket is broken in some unknown way, alert
263 self.socket = None
297 sock = socket
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/
H A DSocketServer.py1 """Generic socket server classes.
5 For socket-based servers:
10 - others, e.g. AF_DECNET are conceivable (see <socket.h>
11 - socket type:
15 For request-based servers (including socket-based):
132 import socket namespace
146 if hasattr(socket, "AF_UNIX"):
200 - socket
232 # connecting to the socket to wake this up instead of
269 # Support people who used socket
[all...]
H A Dasyncore.py28 """Basic infrastructure for asynchronous socket service clients and servers.
50 import socket namespace
115 except socket.error, e:
243 # get a socket from a blocking source.
247 # The constructor no longer requires that the socket
251 except socket.error, err:
254 # socket.
257 # The socket is broken in some unknown way, alert
263 self.socket = None
297 sock = socket
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A DSocketServer.py1 """Generic socket server classes.
5 For socket-based servers:
10 - others, e.g. AF_DECNET are conceivable (see <socket.h>
11 - socket type:
15 For request-based servers (including socket-based):
132 import socket namespace
146 if hasattr(socket, "AF_UNIX"):
200 - socket
232 # connecting to the socket to wake this up instead of
269 # Support people who used socket
[all...]
H A Dasyncore.py28 """Basic infrastructure for asynchronous socket service clients and servers.
50 import socket namespace
115 except socket.error, e:
243 # get a socket from a blocking source.
247 # The constructor no longer requires that the socket
251 except socket.error, err:
254 # socket.
257 # The socket is broken in some unknown way, alert
263 self.socket = None
297 sock = socket
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A DSocketServer.py1 """Generic socket server classes.
5 For socket-based servers:
10 - others, e.g. AF_DECNET are conceivable (see <socket.h>
11 - socket type:
15 For request-based servers (including socket-based):
132 import socket namespace
146 if hasattr(socket, "AF_UNIX"):
200 - socket
232 # connecting to the socket to wake this up instead of
269 # Support people who used socket
[all...]
H A Dasyncore.py28 """Basic infrastructure for asynchronous socket service clients and servers.
50 import socket namespace
115 except socket.error, e:
243 # get a socket from a blocking source.
247 # The constructor no longer requires that the socket
251 except socket.error, err:
254 # socket.
257 # The socket is broken in some unknown way, alert
263 self.socket = None
297 sock = socket
[all...]

Completed in 336 milliseconds

1234567891011>>