Searched refs:RegistryKey (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | SocketOptionRegistry.java | 37 private static class RegistryKey { class in SocketOptionRegistry 40 RegistryKey(SocketOption<?> name, ProtocolFamily family) { in RegistryKey() method in SocketOptionRegistry.RegistryKey 49 if (!(ob instanceof RegistryKey)) return false; in equals() 50 RegistryKey other = (RegistryKey)ob; in equals() 57 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() [all …]
|