HomeSort by relevance Sort by last modified time
    Searched defs:getDns (Results 1 - 9 of 9) sorted by null

  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
ServiceInfoResolver.java 29 info.setDns(this.getDns());
30 this.getDns().addListener(info, DNSQuestion.newQuestion(info.getQualifiedName(), DNSRecordType.TYPE_ANY, DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE));
39 return "ServiceInfoResolver(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
51 this.getDns().removeListener(_info);
65 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifiedName(), DNSRecordType.TYPE_SRV, DNSRecordClass.CLASS_IN), now);
66 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifiedName(), DNSRecordType.TYPE_TXT, DNSRecordClass.CLASS_IN), now);
68 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getServer(), DNSRecordType.TYPE_A, DNSRecordClass.CLASS_IN), now);
69 newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getServer(), DNSRecordType.TYPE_AAAA, DNSRecordClass.CLASS_IN), now);
  /external/jmdns/src/javax/jmdns/impl/
SocketListener.java 77 public JmDNSImpl getDns() {
DNSStatefulObject.java 132 public JmDNSImpl getDns() {
422 public JmDNSImpl getDns();
HostInfo.java 287 public JmDNSImpl getDns() {
288 return this._state.getDns();
ServiceInfoImpl.java 97 if (this.getDns() != null) {
98 this.getDns().startAnnouncer();
922 JmDNSImpl dns = this.getDns();
    [all...]
JmDNSImpl.java 555 public JmDNSImpl getDns() {
    [all...]
  /external/jmdns/src/javax/jmdns/impl/tasks/
DNSTask.java 40 public JmDNSImpl getDns() {
Responder.java 48 return "Responder(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
78 iAmTheOnlyOne = question.iAmTheOnlyOne(this.getDns());
90 if (!this.getDns().isCanceling() && !this.getDns().isCanceled()) {
97 this.getDns().respondToQuery(_in);
103 if (this.getDns().isAnnounced()) {
116 question.addAnswers(this.getDns(), answers);
148 if (!out.isEmpty()) this.getDns().send(out);
153 this.getDns().close()
    [all...]
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
DNSStateTask.java 77 synchronized (this.getDns()) {
78 this.getDns().associateWithTask(this, state);
80 for (ServiceInfo serviceInfo : this.getDns().getServices().values()) {
90 synchronized (this.getDns()) {
91 this.getDns().removeAssociationWithTask(this);
95 for (ServiceInfo serviceInfo : this.getDns().getServices().values()) {
110 synchronized (this.getDns()) {
111 if (this.getDns().isAssociatedWithTask(this, this.getTaskState())) {
112 logger1.finer(this.getName() + ".run() JmDNS " + this.getTaskDescription() + " " + this.getDns().getName());
113 stateObjects.add(this.getDns());
    [all...]

Completed in 533 milliseconds