HomeSort by relevance Sort by last modified time
    Searched defs:Net (Results 1 - 6 of 6) sorted by null

  /libcore/ojluni/src/main/java/sun/nio/ch/
ServerSocketChannelImpl.java 30 import java.net.*;
34 import sun.net.NetHooks;
88 this.fd = Net.serverSocket(true);
103 localAddress = Net.localAddress(fd);
120 : Net.getRevealedLocalAddress(
121 Net.asInetSocketAddress(localAddress));
137 Net.useExclusiveBind())
143 Net.setSocketOption(fd, Net.UNSPEC, name, value);
163 Net.useExclusiveBind()
    [all...]
SocketChannelImpl.java 31 import java.net.*;
38 import sun.net.NetHooks;
107 this.fd = Net.socket(true);
122 this.localAddress = Net.localAddress(fd);
135 this.localAddress = Net.localAddress(fd);
152 return Net.getRevealedLocalAddress(localAddress);
180 if (!Net.isIPv6Available())
181 Net.setSocketOption(fd, StandardProtocolFamily.INET, name, value);
184 Net.useExclusiveBind())
192 Net.setSocketOption(fd, Net.UNSPEC, name, value)
    [all...]
DatagramChannelImpl.java 31 import java.net.*;
38 import sun.net.ResourceManager;
114 this.family = Net.isIPv6Available() ?
116 this.fd = Net.socket(family, false);
138 if (!Net.isIPv6Available()) {
143 this.fd = Net.socket(family, false);
152 this.family = Net.isIPv6Available() ?
157 this.localAddress = Net.localAddress(fd);
172 return Net.getRevealedLocalAddress(localAddress);
200 Net.setSocketOption(fd, family, name, value)
    [all...]
Net.java 32 import java.net.*;
40 class Net { // package-private
42 private Net() { }
51 // Value of jdk.net.revealLocalAddress
54 // True if jdk.net.revealLocalAddress had been read
69 "sun.net.useExclusiveBind");
237 "jdk.net.revealLocalAddress");
SocketAdaptor.java 31 import java.net.*;
43 // The only aspects of java.net.Socket-hood that we don't attempt to emulate
46 // socket should look enough like a real java.net.Socket to fool most of the
50 // java.net.Socket so as to simplify tracking future changes to that class.
103 Net.translateException(ex);
146 Net.translateException(x, true);
156 Net.translateException(x);
178 return Net.getRevealedLocalAddress(local).getAddress();
314 Net.translateToSocketException(x);
324 Net.translateToSocketException(x)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/
Net.java 26 import com.badlogic.gdx.net.HttpRequestHeader;
27 import com.badlogic.gdx.net.HttpResponseHeader;
28 import com.badlogic.gdx.net.HttpStatus;
29 import com.badlogic.gdx.net.ServerSocket;
30 import com.badlogic.gdx.net.ServerSocketHints;
31 import com.badlogic.gdx.net.Socket;
32 import com.badlogic.gdx.net.SocketHints;
55 public interface Net {
112 * <li><strong>httpMethod:</strong> GET or POST are most common, can use {@link Net.HttpMethods HttpMethods} for static
127 * httpGet.setUrl("http://somewhere.net");
    [all...]

Completed in 120 milliseconds