HomeSort by relevance Sort by last modified time
    Searched refs:PlainSocketImpl (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/java/net/
PlainServerSocketImpl.java 28 public class PlainServerSocketImpl extends PlainSocketImpl {
PlainSocketImpl.java 46 public class PlainSocketImpl extends SocketImpl {
62 public PlainSocketImpl(FileDescriptor fd) {
69 public PlainSocketImpl(Proxy proxy) {
74 public PlainSocketImpl() {
78 public PlainSocketImpl(FileDescriptor fd, int localport, InetAddress addr, int port) {
91 ((PlainSocketImpl) newImpl).socksBind();
92 ((PlainSocketImpl) newImpl).socksAccept();
221 private final PlainSocketImpl socketImpl;
223 public PlainSocketInputStream(PlainSocketImpl socketImpl) {
254 private final PlainSocketImpl socketImpl
    [all...]
Socket.java 57 this.impl = factory != null ? factory.createSocketImpl() : new PlainSocketImpl();
85 this.impl = factory != null ? factory.createSocketImpl() : new PlainSocketImpl(proxy);
    [all...]
  /libcore/luni/src/main/java/java/nio/
SocketChannelImpl.java 28 import java.net.PlainSocketImpl;
128 socket = new SocketAdapter(new PlainSocketImpl(fd, localPort, addr, port), this);
487 private final PlainSocketImpl socketImpl;
489 SocketAdapter(PlainSocketImpl socketImpl, SocketChannelImpl channel) throws SocketException {
496 PlainSocketImpl socketImpl() {

Completed in 71 milliseconds