HomeSort by relevance Sort by last modified time
    Searched full:socket (Results 551 - 575 of 4983) sorted by null

<<21222324252627282930>>

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLSocketFactory.java 55 import java.net.Socket;
65 * Layered socket factory for TLS/SSL connections, based on JSSE.
76 * certificates. The client secure socket will reject the connection during
91 * pair. The client secure socket will use the private key to authenticate
237 * Creates the default SSL socket factory.
273 public Socket createSocket()
283 public Socket connectSocket(
284 final Socket sock,
330 // close the socket before re-throwing the exception
340 * Checks whether a socket connection is secure
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/xcb/
xcbext.h 63 * take over the write side of the socket and send raw data with
67 * socket back to make a request. This callback synchronizes with the
68 * external socket owner, flushes any output queues if appropriate, and
70 * socket. */
73 /* You must own the write-side of the socket (you've called
  /system/bt/hci/src/
btsnoop_net.c 28 #include <sys/socket.h>
79 listen_socket_ = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
81 LOG_ERROR("%s socket creation failed: %s", __func__, strerror(errno));
96 LOG_ERROR("%s unable to bind listen socket: %s", __func__, strerror(errno));
111 LOG_WARN("%s error accepting socket: %s", __func__, strerror(errno));
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
SocketTransportWrapper.java 31 import java.net.Socket;
41 * This class provides TransportWrapper for row TCP/IP socket connection.
49 private Socket transportSocket;
75 throw new IOException("Illegal port number in socket address: " + address);
137 throw new IOException("Illegal socket address: " + address);
146 throw new IOException("Illegal socket address: " + address);
154 throw new IOException("Illegal port number in socket address: " + address);
164 transportSocket = new Socket(hostName, port);
235 // workaround for "Socket Closed" exception if connection was closed
314 * Creates input/output streams for connection socket
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
PSKKeyManager.java 19 import java.net.Socket;
112 * socket.
116 String chooseServerKeyIdentityHint(Socket socket);
128 * socket.
135 String chooseClientKeyIdentity(String identityHint, Socket socket);
149 * Gets the PSK to use for the provided socket.
158 SecretKey getKey(String identityHint, String identity, Socket socket);
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldServerSocketTest.java 26 import java.net.Socket;
41 Socket sconn;
70 assertTrue("Server socket not bound when it should be:", theSocket
75 Socket clientSocket = new Socket();
79 Socket servSock = theSocket.accept();
97 Socket cs;
109 cs = new Socket(InetAddress.getLocalHost().getHostName(), port);
218 Socket accepted = newSocket.accept();
225 ServerSocket ss = ssc.socket();
    [all...]