Home
last modified time | relevance | path

Searched refs:OptionKey (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/ch/
DSocketOptionRegistry.java57 static final Map<RegistryKey,OptionKey> options = options();
58 private static Map<RegistryKey,OptionKey> options() { in options()
59 Map<RegistryKey,OptionKey> map = in options()
60 new HashMap<RegistryKey,OptionKey>(); in options()
61 … map.put(new RegistryKey(StandardSocketOptions.SO_BROADCAST, Net.UNSPEC), new OptionKey(1, 6)); in options()
62 … map.put(new RegistryKey(StandardSocketOptions.SO_KEEPALIVE, Net.UNSPEC), new OptionKey(1, 9)); in options()
63 … map.put(new RegistryKey(StandardSocketOptions.SO_LINGER, Net.UNSPEC), new OptionKey(1, 13)); in options()
64 … map.put(new RegistryKey(StandardSocketOptions.SO_SNDBUF, Net.UNSPEC), new OptionKey(1, 7)); in options()
65 … map.put(new RegistryKey(StandardSocketOptions.SO_RCVBUF, Net.UNSPEC), new OptionKey(1, 8)); in options()
66 … map.put(new RegistryKey(StandardSocketOptions.SO_REUSEADDR, Net.UNSPEC), new OptionKey(1, 2)); in options()
[all …]
DOptionKey.java32 class OptionKey { class
36 OptionKey(int level, int name) { in OptionKey() method in OptionKey
DNet.java329 OptionKey key = SocketOptionRegistry.findOption(name, family);
367 OptionKey key = SocketOptionRegistry.findOption(name, family);
/libcore/
Dopenjdk_java_files.mk1481 ojluni/src/main/java/sun/nio/ch/OptionKey.java \