Searched defs:socket (Results 1 - 25 of 430) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Dsocket.c10 int socket(int domain, int type, int protocol) { function
/external/srtp/
H A Dconfigure4686 for ac_header in sys/socket.h netinet/in.h arpa/inet.h
6812 for ac_func in socket inet_aton usleep
6916 echo "$as_me:$LINENO: checking for socket in -lsocket" >&5
6917 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6
6936 char socket ();
6940 socket (); function
6989 echo "$as_me:$LINENO: checking for socket in -lwsock32" >&5
6990 echo $ECHO_N "checking for socket in -lwsock32... $ECHO_C" >&6
7006 socket(0, 0, 0);
/external/chromium_org/device/bluetooth/
H A Dbluetooth_channel_mac.h26 // Sets the channel's owning socket to |socket|. Should only be called if the
27 // socket was previously unset. Note: This can synchronously call back into
28 // socket->OnChannelOpenComplete().
29 virtual void SetSocket(BluetoothSocketMac* socket);
48 // transmitted, the socket's method OnChannelWriteComplete() will be called
53 BluetoothSocketMac* socket() { return socket_; } function in class:device::BluetoothChannelMac
56 // The socket that owns |this|.
/external/lldb/test/functionalities/connect_remote/
H A DEchoServer.py5 Taken from http://docs.python.org/library/socket.html#example.
8 import socket namespace
12 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
/external/chromium_org/third_party/tlslite/tlslite/integration/
H A Dhttptlsconnection.py11 import socket namespace
25 timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
H A Dpop3_tls.py6 import socket namespace
15 timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
73 sock = socket.create_connection((host, port), timeout)
H A Dimap4_tls.py6 import socket namespace
92 self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
/external/chromium_org/third_party/webrtc/base/
H A Dssladapter.cc38 SSLAdapter::Create(AsyncSocket* socket) { argument
40 return new SChannelAdapter(socket);
42 return new OpenSSLAdapter(socket);
44 delete socket;
H A Dasyncsocket.cc21 AsyncSocketAdapter::AsyncSocketAdapter(AsyncSocket* socket) : socket_(NULL) { argument
22 Attach(socket);
29 void AsyncSocketAdapter::Attach(AsyncSocket* socket) { argument
31 socket_ = socket;
H A Dasynctcpsocket_unittest.cc35 void OnReadyToSend(rtc::AsyncPacketSocket* socket) { argument
H A Dasyncudpsocket_unittest.cc35 void OnReadyToSend(rtc::AsyncPacketSocket* socket) { argument
H A Dssladapter.h22 explicit SSLAdapter(AsyncSocket* socket) argument
23 : AsyncSocketAdapter(socket), ignore_bad_cert_(false) { }
29 // If StartSSL is called while the socket is closed or connecting, the SSL
30 // negotiation will begin as soon as the socket connects.
34 // and deletes |socket|. Otherwise, the returned SSLAdapter takes ownership
35 // of |socket|.
36 static SSLAdapter* Create(AsyncSocket* socket);
/external/chromium_org/third_party/webrtc/test/channel_transport/
H A Dudp_socket_manager_unittest.cc36 // Creates a socket and adds it to the socket manager, and then removes it
37 // before destroying the socket manager.
42 UdpSocketWrapper* socket = local
51 EXPECT_EQ(true, mgr->RemoveSocket(socket));
55 // Creates a socket and add it to the socket manager, but does not remove it
56 // before destroying the socket manager.
57 // On Posix, this destroys the socket.
/external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
H A Dwebsocket.py6 import socket namespace
25 sockopt.append((socket.SOL_SOCKET, socket.SO_REUSEADDR, 1))
/external/lldb/test/pexpect-2.4/examples/
H A Dbd_client.py6 import socket namespace
22 s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_HttpSocket.java34 Support_HttpSocket(Socket socket) { argument
35 instance = socket;
/external/apache-http/src/org/apache/http/conn/scheme/
H A DLayeredSocketFactory.java40 * See there for things to consider when implementing a socket factory.
54 * Returns a socket connected to the given host that is layered over an
55 * existing socket. Used primarily for creating secure sockets through
58 * @param socket the existing socket
61 * @param autoClose a flag for closing the underling socket when the created
62 * socket is closed
64 * @return Socket a new socket
66 * @throws IOException if an I/O error occurs while creating the socket
71 Socket socket,
70 createSocket( Socket socket, String host, int port, boolean autoClose ) argument
[all...]
/external/apache-http/src/org/apache/http/impl/
H A DDefaultHttpClientConnection.java61 final Socket socket,
63 if (socket == null) {
70 socket.setTcpNoDelay(HttpConnectionParams.getTcpNoDelay(params));
71 socket.setSoTimeout(HttpConnectionParams.getSoTimeout(params));
75 socket.setSoLinger(linger > 0, linger);
77 super.bind(socket, params);
60 bind( final Socket socket, final HttpParams params) argument
H A DDefaultHttpServerConnection.java60 public void bind(final Socket socket, final HttpParams params) throws IOException { argument
61 if (socket == null) {
68 socket.setTcpNoDelay(HttpConnectionParams.getTcpNoDelay(params));
69 socket.setSoTimeout(HttpConnectionParams.getSoTimeout(params));
73 socket.setSoLinger(linger > 0, linger);
75 super.bind(socket, params);
/external/apache-http/src/org/apache/http/impl/io/
H A DSocketOutputBuffer.java57 final Socket socket,
61 if (socket == null) {
69 init(socket.getOutputStream(), 8192, params);
56 SocketOutputBuffer( final Socket socket, int buffersize, final HttpParams params) argument
/external/chromium_org/net/socket_stream/
H A Dsocket_stream_job.h50 void InitSocketStream(SocketStream* socket) { argument
51 socket_ = socket;
/external/chromium_org/ppapi/tests/
H A Dtest_tcp_socket_private_disallowed.cc38 PP_Resource socket = local
40 if (0 != socket) {
43 socket, kServerName, kPort,
H A Dtest_udp_socket_private_disallowed.cc32 PP_Resource socket = local
34 if (0 != socket) {
39 callback.WaitForResult(udp_socket_private_interface_->Bind(socket, &addr,
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
H A Dapache_http.py33 import socket namespace
101 socket.getaddrinfo('::1', 0, 0, 0, 0, socket.AI_ADDRCONFIG)
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprtpool.h52 PRFileDesc *socket; member in struct:PRJobIoDesc
70 /* queue a job, when a socket is readable */
75 /* queue a job, when a socket is writeable */
80 /* queue a job, when a socket has a pending connection */
85 /* queue a job, when the socket connection to addr succeeds or fails */

Completed in 2786 milliseconds

1234567891011>>