Home
last modified time | relevance | path

Searched refs:getTcpNoDelay (Results 1 – 8 of 8) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
DSocketTest.java984 boolean bool = !client.getTcpNoDelay(); in test_getTcpNoDelay()
986 assertTrue("Failed to get no delay setting: " + client.getTcpNoDelay(), in test_getTcpNoDelay()
987 client.getTcpNoDelay() == bool); in test_getTcpNoDelay()
1518 client.setTcpNoDelay(bool = !client.getTcpNoDelay()); in test_setTcpNoDelayZ()
1519 …assertTrue("Failed to set no delay setting: " + client.getTcpNoDelay(), client.getTcpNoDelay() == … in test_setTcpNoDelayZ()
/libcore/luni/src/test/java/libcore/java/net/
DOldSocketTest.java416 boolean bool = !s.getTcpNoDelay(); in test_getTcpNoDelay()
418 assertTrue("Failed to get no delay setting: " + s.getTcpNoDelay(), in test_getTcpNoDelay()
419 s.getTcpNoDelay() == bool); in test_getTcpNoDelay()
429 s.getTcpNoDelay(); in test_getTcpNoDelay()
565 s.setTcpNoDelay(bool = !s.getTcpNoDelay()); in test_setTcpNoDelayZ()
566 assertTrue("Failed to set no delay setting: " + s.getTcpNoDelay(), in test_setTcpNoDelayZ()
567 s.getTcpNoDelay() == bool); in test_setTcpNoDelayZ()
DURLConnectionTest.java3574 …@Override public boolean getTcpNoDelay() throws SocketException { return delegate.getTcpNoDelay();…
3743 @Override public boolean getTcpNoDelay() throws SocketException {
3744 return delegate.getTcpNoDelay();
/libcore/ojluni/annotations/mmodule/java/net/
DSocket.annotated.java84 public boolean getTcpNoDelay() throws java.net.SocketException { throw new RuntimeException("Stub!"… in getTcpNoDelay() method in Socket
/libcore/ojluni/annotations/hiddenapi/java/net/
DSocket.java177 public boolean getTcpNoDelay() throws java.net.SocketException { in getTcpNoDelay() method in Socket
/libcore/ojluni/src/main/java/sun/nio/ch/
DSocketAdaptor.java326 public boolean getTcpNoDelay() throws SocketException { in getTcpNoDelay() method in SocketAdaptor
/libcore/ojluni/src/main/java/java/net/
DSocket.java1025 public boolean getTcpNoDelay() throws SocketException { in getTcpNoDelay() method in Socket
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
DSocketChannelTest.java539 assertFalse(s.getTcpNoDelay()); in assertSocketBeforeConnect()
569 assertFalse(s.getTcpNoDelay()); in assertSocketAfterConnect()