/external/jmdns/src/javax/jmdns/ |
ServiceInfo.java | 12 import javax.jmdns.impl.ServiceInfoImpl; 80 return new ServiceInfoImpl(type, name, "", port, 0, 0, false, text); 99 return new ServiceInfoImpl(type, name, subtype, port, 0, 0, false, text); 120 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, text); 143 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text); 164 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, props); 187 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, props); 208 return new ServiceInfoImpl(type, name, "", port, weight, priority, false, text); 231 return new ServiceInfoImpl(type, name, subtype, port, weight, priority, false, text); 254 return new ServiceInfoImpl(type, name, "", port, weight, priority, persistent, text) [all...] |
/external/jmdns/src/javax/jmdns/impl/tasks/state/ |
DNSStateTask.java | 14 import javax.jmdns.impl.ServiceInfoImpl; 81 ((ServiceInfoImpl) serviceInfo).associateWithTask(this, state); 96 ((ServiceInfoImpl) serviceInfo).removeAssociationWithTask(this); 119 ServiceInfoImpl info = (ServiceInfoImpl) serviceInfo; 155 protected abstract DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException;
|
Canceler.java | 14 import javax.jmdns.impl.ServiceInfoImpl; 112 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForInfo(javax.jmdns.impl.ServiceInfoImpl, javax.jmdns.impl.DNSOutgoing) 115 protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException {
|
Announcer.java | 14 import javax.jmdns.impl.ServiceInfoImpl; 112 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForInfo(javax.jmdns.impl.ServiceInfoImpl, javax.jmdns.impl.DNSOutgoing) 115 protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException {
|
Renewer.java | 14 import javax.jmdns.impl.ServiceInfoImpl; 113 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForInfo(javax.jmdns.impl.ServiceInfoImpl, javax.jmdns.impl.DNSOutgoing) 116 protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException {
|
Prober.java | 15 import javax.jmdns.impl.ServiceInfoImpl; 126 * @see javax.jmdns.impl.tasks.state.DNSStateTask#buildOutgoingForInfo(javax.jmdns.impl.ServiceInfoImpl, javax.jmdns.impl.DNSOutgoing) 129 protected DNSOutgoing buildOutgoingForInfo(ServiceInfoImpl info, DNSOutgoing out) throws IOException {
|
/external/jmdns/src/javax/jmdns/impl/ |
ServiceEventImpl.java | 120 ServiceInfoImpl newInfo = new ServiceInfoImpl(this.getInfo());
|
DNSRecord.java | 208 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent); 253 ServiceInfoImpl info = (ServiceInfoImpl) super.getServiceInfo(persistent); 351 ServiceInfoImpl info = (ServiceInfoImpl) serviceInfo; 373 ServiceInfoImpl info = (ServiceInfoImpl) serviceInfo; 394 ServiceInfoImpl info = new ServiceInfoImpl(this.getQualifiedNameMap(), 0, 0, 0, persistent, (byte[]) null) [all...] |
DNSQuestion.java | 96 this.addAnswersForServiceInfo(jmDNSImpl, answers, (ServiceInfoImpl) serviceInfo); 147 this.addAnswersForServiceInfo(jmDNSImpl, answers, (ServiceInfoImpl) jmDNSImpl.getServices().get(loname)); 168 this.addAnswersForServiceInfo(jmDNSImpl, answers, (ServiceInfoImpl) jmDNSImpl.getServices().get(this.getName().toLowerCase())); 208 this.addAnswersForServiceInfo(jmDNSImpl, answers, (ServiceInfoImpl) jmDNSImpl.getServices().get(loname)); 278 protected void addAnswersForServiceInfo(JmDNSImpl jmDNSImpl, Set<DNSRecord> answers, ServiceInfoImpl info) {
|
ServiceInfoImpl.java | 42 public class ServiceInfoImpl extends ServiceInfo implements DNSListener, DNSStatefulObject { 43 private static Logger logger = Logger.getLogger(ServiceInfoImpl.class.getName()); 78 private final ServiceInfoImpl _info; 83 public ServiceInfoState(ServiceInfoImpl info) { 127 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, String text) { 128 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, (byte[]) null); 150 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, Map<String, ?> props) { 151 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, textFromProperties(props)); 165 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, byte text[]) { 166 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, text) [all...] |
JmDNSImpl.java | 434 this.registerService(new ServiceInfoImpl(info)); 735 final ServiceInfoImpl info = this.resolveServiceInfo(type, name, "", persistent); 740 ServiceInfoImpl resolveServiceInfo(String type, String name, String subtype, boolean persistent) { 749 final ServiceInfoImpl info = this.getServiceInfoFromCache(type, name, subtype, persistent); 756 ServiceInfoImpl getServiceInfoFromCache(String type, String name, String subtype, boolean persistent) { 758 ServiceInfoImpl info = new ServiceInfoImpl(type, name, subtype, 0, 0, 0, persistent, (byte[]) null); 761 ServiceInfoImpl cachedInfo = (ServiceInfoImpl) ((DNSRecord) pointerEntry).getServiceInfo(persistent); 772 cachedInfo = new ServiceInfoImpl(map, cachedServiceEntryInfo.getPort(), cachedServiceEntryInfo.getWeight(), cachedServiceEntryInfo. (…) [all...] |
DNSTaskStarter.java | 353 * @see javax.jmdns.impl.DNSTaskStarter#startServiceInfoResolver(javax.jmdns.impl.ServiceInfoImpl) 356 public void startServiceInfoResolver(ServiceInfoImpl info) { 439 public void startServiceInfoResolver(ServiceInfoImpl info);
|
JmmDNSImpl.java | 41 public class JmmDNSImpl implements JmmDNS, NetworkTopologyListener, ServiceInfoImpl.Delegate { 315 * @see javax.jmdns.impl.ServiceInfoImpl.Delegate#textValueUpdated(javax.jmdns.ServiceInfo, byte[]) 342 ((ServiceInfoImpl) info).setDelegate(this); 357 ((ServiceInfoImpl) info).setDelegate(null);
|
DNSEntry.java | 47 _qualifiedNameMap = ServiceInfoImpl.decodeQualifiedNameMapForType(this.getName());
|
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/ |
ServiceInfoResolver.java | 13 import javax.jmdns.impl.ServiceInfoImpl; 24 private final ServiceInfoImpl _info; 26 public ServiceInfoResolver(JmDNSImpl jmDNSImpl, ServiceInfoImpl info) {
|