Home
last modified time | relevance | path

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

/external/jmdns/src/javax/jmdns/
DServiceInfo.java12 import javax.jmdns.impl.ServiceInfoImpl;
80 return new ServiceInfoImpl(type, name, "", port, 0, 0, false, text); in create()
99 return new ServiceInfoImpl(type, name, subtype, port, 0, 0, false, text); in create()
120 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, text); in create()
143 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text); in create()
164 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, props); in create()
187 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, props); in create()
208 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, text); in create()
231 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text); in create()
254 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, text); in create()
[all …]
/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java208 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent); in getServiceInfo()
253 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent); in getServiceInfo()
351 ServiceInfoImpl info = (ServiceInfoImpl) serviceInfo; in handleQuery()
373 ServiceInfoImpl info = (ServiceInfoImpl) serviceInfo; in handleResponse()
394ServiceInfoImpl info = new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[… in getServiceInfo()
406 ((ServiceInfoImpl) info).setDns(dns); in getServiceEvent()
496 … Map<Fields, String> map = ServiceInfoImpl.decodeQualifiedNameMapForType(this.getAlias()); in getServiceInfo()
497 return new ServiceInfoImpl(map, 0, 0, 0, persistent, (byte[]) null); in getServiceInfo()
499 … return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[]) null); in getServiceInfo()
502 … return new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[]) null); in getServiceInfo()
[all …]
DServiceInfoImpl.java42 public class ServiceInfoImpl extends ServiceInfo implements DNSListener, DNSStatefulObject { class
43 private static Logger logger = Logger.getLogger(ServiceInfoImpl.class.getName());
78 private final ServiceInfoImpl _info;
83 public ServiceInfoState(ServiceInfoImpl info) { in ServiceInfoState()
127 …public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priorit… in ServiceInfoImpl() method in ServiceInfoImpl
128 …this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persiste… in ServiceInfoImpl()
150 …public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priorit… in ServiceInfoImpl() method in ServiceInfoImpl
151 …this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persiste… in ServiceInfoImpl()
165 …public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priorit… in ServiceInfoImpl() method in ServiceInfoImpl
166 …this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persiste… in ServiceInfoImpl()
[all …]
DJmDNSImpl.java434 this.registerService(new ServiceInfoImpl(info)); in start()
735 final ServiceInfoImpl info = this.resolveServiceInfo(type, name, "", persistent); in getServiceInfo()
740ServiceInfoImpl resolveServiceInfo(String type, String name, String subtype, boolean persistent) { in resolveServiceInfo()
749 final ServiceInfoImpl info = this.getServiceInfoFromCache(type, name, subtype, persistent); in resolveServiceInfo()
756ServiceInfoImpl getServiceInfoFromCache(String type, String name, String subtype, boolean persiste… in getServiceInfoFromCache()
758ServiceInfoImpl info = new ServiceInfoImpl(type, name, subtype, 0, 0, 0, persistent, (byte[]) null… in getServiceInfoFromCache()
761ServiceInfoImpl cachedInfo = (ServiceInfoImpl) ((DNSRecord) pointerEntry).getServiceInfo(persisten… in getServiceInfoFromCache()
772 …cachedInfo = new ServiceInfoImpl(map, cachedServiceEntryInfo.getPort(), cachedServiceEntryInfo.get… in getServiceInfoFromCache()
863 final ServiceInfoImpl info = this.resolveServiceInfo(type, name, "", persistent); in requestServiceInfo()
989 final ServiceInfoImpl info = (ServiceInfoImpl) infoAbstract; in registerService()
[all …]
DServiceEventImpl.java120 ServiceInfoImpl newInfo = new ServiceInfoImpl(this.getInfo()); in clone()
DDNSQuestion.java96 this.addAnswersForServiceInfo(jmDNSImpl, answers, (ServiceInfoImpl) serviceInfo); in addAnswers()
147 …this.addAnswersForServiceInfo(jmDNSImpl, answers, (ServiceInfoImpl) jmDNSImpl.getServices().get(lo… in addAnswers()
168 …this.addAnswersForServiceInfo(jmDNSImpl, answers, (ServiceInfoImpl) jmDNSImpl.getServices().get(th… in addAnswers()
208 …this.addAnswersForServiceInfo(jmDNSImpl, answers, (ServiceInfoImpl) jmDNSImpl.getServices().get(lo… in addAnswers()
278 … void addAnswersForServiceInfo(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers, ServiceInfoImpl info) { in addAnswersForServiceInfo()
DDNSTaskStarter.java356 public void startServiceInfoResolver(ServiceInfoImpl info) { in startServiceInfoResolver()
439 public void startServiceInfoResolver(ServiceInfoImpl info); in startServiceInfoResolver()
DJmmDNSImpl.java41 public class JmmDNSImpl implements JmmDNS, NetworkTopologyListener, ServiceInfoImpl.Delegate {
342 ((ServiceInfoImpl) info).setDelegate(this); in registerService()
357 ((ServiceInfoImpl) info).setDelegate(null); in unregisterService()
DDNSEntry.java47 _qualifiedNameMap = ServiceInfoImpl.decodeQualifiedNameMapForType(this.getName()); in DNSEntry()
/external/jmdns/src/javax/jmdns/impl/tasks/state/
DDNSStateTask.java14 import javax.jmdns.impl.ServiceInfoImpl;
81 ((ServiceInfoImpl) serviceInfo).associateWithTask(this, state); in associate()
96 ((ServiceInfoImpl) serviceInfo).removeAssociationWithTask(this); in removeAssociation()
119 ServiceInfoImpl info = (ServiceInfoImpl) serviceInfo; in run()
155 …protected abstract DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws … in buildOutgoingForInfo()
DCanceler.java14 import javax.jmdns.impl.ServiceInfoImpl;
115 …protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOExcepti… in buildOutgoingForInfo()
DAnnouncer.java14 import javax.jmdns.impl.ServiceInfoImpl;
115 …protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOExcepti… in buildOutgoingForInfo()
DRenewer.java14 import javax.jmdns.impl.ServiceInfoImpl;
116 …protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOExcepti… in buildOutgoingForInfo()
DProber.java15 import javax.jmdns.impl.ServiceInfoImpl;
129 …protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOExcepti… in buildOutgoingForInfo()
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DServiceInfoResolver.java13 import javax.jmdns.impl.ServiceInfoImpl;
24 private final ServiceInfoImpl _info;
26 public ServiceInfoResolver(JmDNSImpl jmDNSImpl, ServiceInfoImpl info) { in ServiceInfoResolver()