/libcore/ojluni/src/main/java/java/nio/channels/ |
D | ServerSocketChannel.java | 154 public final ServerSocketChannel bind(SocketAddress local) in bind() 198 public abstract ServerSocketChannel bind(SocketAddress local, int backlog) in bind()
|
D | AsynchronousServerSocketChannel.java | 190 public final AsynchronousServerSocketChannel bind(SocketAddress local) in bind() 231 public abstract AsynchronousServerSocketChannel bind(SocketAddress local, int backlog) in bind()
|
D | NetworkChannel.java | 87 NetworkChannel bind(SocketAddress local) throws IOException; in bind()
|
D | SocketChannel.java | 238 public abstract SocketChannel bind(SocketAddress local) in bind()
|
D | DatagramChannel.java | 215 public abstract DatagramChannel bind(SocketAddress local) in bind()
|
D | AsynchronousSocketChannel.java | 209 public abstract AsynchronousSocketChannel bind(SocketAddress local) in bind()
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | ServerSocketAdaptor.java | 66 public void bind(SocketAddress local) throws IOException { in bind() 70 public void bind(SocketAddress local, int backlog) throws IOException { in bind()
|
D | SocketAdaptor.java | 142 public void bind(SocketAddress local) throws IOException { in bind() 165 InetSocketAddress local = sc.localAddress(); in getLocalAddress() local 187 SocketAddress local = sc.localAddress(); in getLocalPort() local
|
D | DatagramSocketAdaptor.java | 87 public void bind(SocketAddress local) throws SocketException { in bind() 248 SocketAddress local = dc.getLocalAddress(); in getLocalPort() local
|
D | AsynchronousServerSocketChannelImpl.java | 147 public final AsynchronousServerSocketChannel bind(SocketAddress local, int backlog) in bind()
|
D | ServerSocketChannelImpl.java | 211 public ServerSocketChannel bind(SocketAddress local, int backlog) throws IOException { in bind()
|
D | SocketChannelImpl.java | 609 public SocketChannel bind(SocketAddress local) throws IOException { in bind()
|
D | AsynchronousSocketChannelImpl.java | 420 public final AsynchronousSocketChannel bind(SocketAddress local) in bind()
|
D | DatagramChannelImpl.java | 706 public DatagramChannel bind(SocketAddress local) throws IOException { in bind()
|
/libcore/ojluni/src/main/java/sun/net/ftp/ |
D | FtpClient.java | 368 …public abstract FtpClient getFile(String name, OutputStream local) throws FtpProtocolException, IO… in getFile() 462 …public FtpClient putFile(String name, InputStream local) throws FtpProtocolException, IOException { in putFile() 488 …public abstract FtpClient putFile(String name, InputStream local, boolean unique) throws FtpProtoc… in putFile() 506 …public abstract FtpClient appendFile(String name, InputStream local) throws FtpProtocolException, … in appendFile()
|
/libcore/ojluni/annotations/hiddenapi/sun/net/ftp/ |
D | FtpClient.java | 105 public abstract sun.net.ftp.FtpClient getFile(java.lang.String name, java.io.OutputStream local) in getFile() 119 public sun.net.ftp.FtpClient putFile(java.lang.String name, java.io.InputStream local) in putFile() 125 java.lang.String name, java.io.InputStream local, boolean unique) in putFile() 129 java.lang.String name, java.io.InputStream local) in appendFile()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
D | MockServerSocketChannel.java | 60 public ServerSocketChannel bind(SocketAddress local, int backlog) { in bind()
|
D | MockSocketChannel.java | 111 public SocketChannel bind(SocketAddress local) throws IOException { in bind()
|
D | MockDatagramChannel.java | 115 public DatagramChannel bind(SocketAddress local) throws IOException { in bind()
|
D | SocketChannelTest.java | 3834 public SocketChannel bind(SocketAddress local) throws IOException { in bind()
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
D | NamespaceSupport.java | 693 String local = qName.substring(index+1); in processName() local
|
/libcore/ojluni/src/main/java/sun/net/ftp/impl/ |
D | FtpClient.java | 1236 …public sun.net.ftp.FtpClient getFile(String name, OutputStream local) throws sun.net.ftp.FtpProtoc… in getFile() 1362 …public sun.net.ftp.FtpClient putFile(String name, InputStream local, boolean unique) throws sun.ne… in putFile() 1392 …public sun.net.ftp.FtpClient appendFile(String name, InputStream local) throws sun.net.ftp.FtpProt… in appendFile()
|
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | OldSocketChannelTest.java | 435 public SocketChannel bind(SocketAddress local) throws IOException { in bind()
|
/libcore/ojluni/src/main/java/java/net/ |
D | InetAddress.java | 1487 String local = Libcore.os.uname().nodename; in getLocalHost() local
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/ |
D | DatagramSocketTest.java | 350 InetAddress local = InetAddress.getLocalHost(); in test_getLocalAddress() local 351 try (DatagramSocket ds = new DatagramSocket(0, local)) { in test_getLocalAddress() argument
|