Home
last modified time | relevance | path

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

/external/jmdns/src/javax/jmdns/impl/
DJmDNSImpl.java102 private final ConcurrentMap<String, ServiceTypeEntry> _serviceTypes; field in JmDNSImpl
405 _serviceTypes = new ConcurrentHashMap<String, ServiceTypeEntry>(20); in JmDNSImpl()
898 for (String type : _serviceTypes.keySet()) { in addServiceTypeListener()
1094 …if (!_serviceTypes.containsKey(loname) && !application.toLowerCase().equals("dns-sd") && !domain.t… in registerServiceType()
1095 typeAdded = _serviceTypes.putIfAbsent(loname, new ServiceTypeEntry(name)) == null; in registerServiceType()
1111 ServiceTypeEntry subtypes = _serviceTypes.get(loname); in registerServiceType()
1875 for (String key : _serviceTypes.keySet()) { in toString()
1876 ServiceTypeEntry subtypes = _serviceTypes.get(key); in toString()
2200 return _serviceTypes; in getServiceTypes()