Home
last modified time | relevance | path

Searched refs:getSocket (Results 1 – 24 of 24) sorted by relevance

/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
DSocks5ClientForInitiator.java63 public Socket getSocket(int timeout) throws IOException, XMPPException, InterruptedException, in getSocket() method in Socks5ClientForInitiator
70 socket = socks5Server.getSocket(this.digest); in getSocket()
76 socket = super.getSocket(timeout); in getSocket()
DSocks5Client.java69 public Socket getSocket(int timeout) throws IOException, XMPPException, InterruptedException, in getSocket() method in Socks5Client
DSocks5BytestreamRequest.java226 socket = socks5Client.getSocket(timeout); in accept()
DSocks5Proxy.java268 protected Socket getSocket(String digest) { in getSocket() method in Socks5Proxy
DSocks5BytestreamManager.java494 Socket socket = socks5Client.getSocket(getProxyConnectionTimeout()); in establishSession()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DIOHandler.java91 protected Socket getSocket(String key) { in getSocket() method in IOHandler
137 Socket clientSock = getSocket(key);
188 Socket clientSock = getSocket(key);
259 Socket clientSock = getSocket(key);
/external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
DUdpKernel.java151 p = new UdpEndpoint( this, nextEndpointId(), address, thread.getSocket() ); in getEndpoint()
227 thread.getSocket().send(packet); in run()
249 protected DatagramSocket getSocket() in getSocket() method in UdpKernel.HostThread
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
DThreadSafeClientConnManager.java181 final Socket socket = entry.getConnection().getSocket(); in requestConnection()
216 final Socket socket = entry.getConnection().getSocket();
/external/okhttp/src/main/java/com/squareup/okhttp/
DConnectionPool.java175 Platform.get().tagSocket(connection.getSocket()); in get()
214 Platform.get().untagSocket(connection.getSocket()); in recycle()
DConnection.java213 public Socket getSocket() { in getSocket() method in Connection
/external/apache-http/src/org/apache/http/conn/
DOperatedClientConnection.java96 Socket getSocket() in getSocket() method
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/serialization/
DHandshakeCompletedEventTest.java53 test.getSocket(); in assertDeserialized()
/external/apache-http/src/org/apache/http/impl/conn/
DSingleClientConnManager.java257 final Socket socket = uniquePoolEntry.connection.getSocket();
299 final Socket socket = uniquePoolEntry.connection.getSocket();
DDefaultClientConnection.java103 public final Socket getSocket() { in getSocket() method in DefaultClientConnection
DAbstractClientConnAdapter.java333 Socket sock = conn.getSocket(); in getSSLSession()
DDefaultClientConnectionOperator.java232 (conn.getSocket(), target.getHostName(), schm.resolvePort(target.getPort()), true); in updateSecureConnection()
/external/jmdns/src/javax/jmdns/impl/
DSocketListener.java41 this._jmDNSImpl.getSocket().receive(packet); in run()
DJmDNSImpl.java2203 public MulticastSocket getSocket() { in getSocket() method in JmDNSImpl
/external/apache-http/src/org/apache/http/impl/
DSocketHttpServerConnection.java112 protected Socket getSocket() { in getSocket() method in SocketHttpServerConnection
DSocketHttpClientConnection.java118 protected Socket getSocket() { in getSocket() method in SocketHttpClientConnection
/external/apache-harmony/x-net/src/test/api/java/org/apache/harmony/xnet/tests/javax/net/ssl/
DHandshakeCompletedEventTest.java150 assertEquals(soc, event.getSocket()); in testHandshakeCompletedEvent()
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DHttpsURLConnectionImpl.java431 this.sslSocket = connection != null ? (SSLSocket) connection.getSocket() : null; in HttpsEngine()
435 this.sslSocket = (SSLSocket) connection.getSocket(); in connected()
DHttpTransport.java190 Socket socket = connection.getSocket(); in discardStream()
/external/okhttp/src/test/java/com/squareup/okhttp/
DConnectionPoolTest.java215 httpA.getSocket().shutdownInput(); in recyclingNonAliveConnectionClosesThatConnection()
217 assertTrue(httpA.getSocket().isClosed()); in recyclingNonAliveConnectionClosesThatConnection()