Home
last modified time | relevance | path

Searched refs:getTcpNoDelay (Results 1 – 6 of 6) 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.java413 boolean bool = !s.getTcpNoDelay(); in test_getTcpNoDelay()
415 assertTrue("Failed to get no delay setting: " + s.getTcpNoDelay(), in test_getTcpNoDelay()
416 s.getTcpNoDelay() == bool); in test_getTcpNoDelay()
426 s.getTcpNoDelay(); in test_getTcpNoDelay()
562 s.setTcpNoDelay(bool = !s.getTcpNoDelay()); in test_setTcpNoDelayZ()
563 assertTrue("Failed to set no delay setting: " + s.getTcpNoDelay(), in test_setTcpNoDelayZ()
564 s.getTcpNoDelay() == bool); in test_setTcpNoDelayZ()
DURLConnectionTest.java3333 …@Override public boolean getTcpNoDelay() throws SocketException { return delegate.getTcpNoDelay();…
3502 @Override public boolean getTcpNoDelay() throws SocketException {
3503 return delegate.getTcpNoDelay();
/libcore/ojluni/src/main/java/sun/nio/ch/
DSocketAdaptor.java324 public boolean getTcpNoDelay() throws SocketException { in getTcpNoDelay() method in SocketAdaptor
/libcore/ojluni/src/main/java/java/net/
DSocket.java1020 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()