Home
last modified time | relevance | path

Searched refs:getReceiveBufferSize (Results 1 – 7 of 7) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DAbstractConscryptSocket.java383 public int getReceiveBufferSize() throws SocketException { in getReceiveBufferSize() method in AbstractConscryptSocket
385 return socket.getReceiveBufferSize(); in getReceiveBufferSize()
387 return super.getReceiveBufferSize(); in getReceiveBufferSize()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DDelegatingSSLSocket.java164 @Override public int getReceiveBufferSize() throws SocketException { in getReceiveBufferSize() method in DelegatingSSLSocket
165 return delegate.getReceiveBufferSize(); in getReceiveBufferSize()
/external/conscrypt/android/src/main/java/org/conscrypt/
DPreKitKatPlatformOpenSSLSocketImplAdapter.java201 public int getReceiveBufferSize() throws SocketException { in getReceiveBufferSize() method in PreKitKatPlatformOpenSSLSocketImplAdapter
202 return delegate.getReceiveBufferSize(); in getReceiveBufferSize()
DKitKatPlatformOpenSSLSocketImplAdapter.java201 public int getReceiveBufferSize() throws SocketException { in getReceiveBufferSize() method in KitKatPlatformOpenSSLSocketImplAdapter
202 return delegate.getReceiveBufferSize(); in getReceiveBufferSize()
/external/jacoco/org.jacoco.agent.rt.test/src/org/jacoco/agent/rt/internal/output/
DMockServerSocket.java142 public synchronized int getReceiveBufferSize() throws SocketException { in getReceiveBufferSize() method in MockServerSocket
DMockSocketConnection.java222 public synchronized int getReceiveBufferSize() throws SocketException { in getReceiveBufferSize() method in MockSocketConnection.MockSocket
/external/nist-sip/java/gov/nist/javax/sip/stack/
DUDPMessageProcessor.java188 int bufsize = sock.getReceiveBufferSize(); in run()