Searched refs:sendUrgentData (Results 1 - 13 of 13) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileDescriptorHolderSocketImpl.java112 protected void sendUrgentData(int data) throws IOException { method in class:FileDescriptorHolderSocketImpl
H A DSocketAdaptor.java338 public void sendUrgentData(int data) throws IOException { method in class:SocketAdaptor
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
H A DSocketImplTest.java136 protected void sendUrgentData(int value) throws IOException { method in class:SocketImplTest.MockSocketImpl
H A DSocketTest.java1190 * java.net.Socket#sendUrgentData(int)
1226 worker.sendUrgentData("UrgentData".getBytes()[0]);
1280 worker.sendUrgentData(urgentByte);
1338 worker.sendUrgentData(urgentByte1);
1339 worker.sendUrgentData(urgentByte2);
1391 worker.sendUrgentData(urgentByte);
H A DServerSocketTest.java964 protected void sendUrgentData(int arg0) throws IOException { method in class:ServerSocketTest.MockSocketImpl
/libcore/luni/src/test/java/libcore/java/net/
H A DOldSocketImplFactoryTest.java167 protected void sendUrgentData(int arg0) throws IOException { method in class:OldSocketImplFactoryTest.MockSocketImpl
H A DOldSocketTest.java1631 servSock.sendUrgentData(urgentData.getBytes()[0]);
1661 servSock.sendUrgentData(urgentData.getBytes()[0]);
1691 servSock.sendUrgentData(urgentData.getBytes()[0]);
1692 servSock.sendUrgentData(urgentData.getBytes()[0]);
1728 servSock.sendUrgentData(urgentData.getBytes()[0]);
1750 servSock.sendUrgentData(urgentData.getBytes()[0]);
1776 servSock.sendUrgentData(urgentData.getBytes()[0]);
1812 servSock.sendUrgentData(urgentData.getBytes()[0]);
1836 // Calling sendUrgentData on a closed socket should not allocate a new impl and leak resources.
1842 theSocket.sendUrgentData(
2113 protected void sendUrgentData(int arg0) throws IOException { method in class:OldSocketTest.MockSocketImpl
[all...]
H A DOldServerSocketTest.java367 protected void sendUrgentData(int arg0) throws IOException { method in class:OldServerSocketTest.MockSocketImpl
H A DSocketTest.java216 @Override protected void sendUrgentData(int arg0) throws IOException { }
H A DURLConnectionTest.java3348 @Override public void sendUrgentData(int data) throws IOException { delegate.sendUrgentData(data); } method in class:URLConnectionTest.DelegatingSocket
3606 @Override public void sendUrgentData(int value) throws IOException { method in class:URLConnectionTest.DelegatingSSLSocket
3607 delegate.sendUrgentData(value);
/libcore/ojluni/src/main/java/java/net/
H A DSocketImpl.java279 protected abstract void sendUrgentData (int data) throws IOException; method in class:SocketImpl
H A DSocket.java1095 public void sendUrgentData (int data) throws IOException { method in class:Socket
1096 // Android-changed: If the socket is closed, sendUrgentData should not create a new impl.
1106 getImpl().sendUrgentData (data);
H A DAbstractPlainSocketImpl.java642 protected void sendUrgentData (int data) throws IOException { method in class:AbstractPlainSocketImpl

Completed in 456 milliseconds