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

  /external/jmdns/src/javax/jmdns/impl/tasks/
RecordReaper.java 33 return "RecordReaper(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
42 if (!this.getDns().isCanceling() && !this.getDns().isCanceled()) {
49 if (this.getDns().isCanceling() || this.getDns().isCanceled()) {
58 this.getDns().cleanCache();
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...]
DNSTask.java 40 public JmDNSImpl getDns() {
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
Prober.java 43 return "Prober(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
62 if (now - this.getDns().getLastThrottleIncrement() < DNSConstants.PROBE_THROTTLE_COUNT_INTERVAL) {
63 this.getDns().setThrottle(this.getDns().getThrottle() + 1);
65 this.getDns().setThrottle(1);
67 this.getDns().setLastThrottleIncrement(now);
69 if (this.getDns().isAnnounced() && this.getDns().getThrottle() < DNSConstants.PROBE_THROTTLE_COUNT) {
71 } else if (!this.getDns().isCanceling() && !this.getDns().isCanceled())
    [all...]
Announcer.java 40 return "Announcer(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
58 if (!this.getDns().isCanceling() && !this.getDns().isCanceled()) {
85 return !this.getDns().isCanceling() && !this.getDns().isCanceled();
104 for (DNSRecord answer : this.getDns().getLocalHost().answers(DNSRecordClass.UNIQUE, this.getTTL())) {
117 for (DNSRecord answer : info.answers(DNSRecordClass.UNIQUE, this.getTTL(), this.getDns().getLocalHost())) {
129 this.getDns().recover();
142 this.getDns().startRenewer()
    [all...]
Renewer.java 38 return "Renewer(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
56 if (!this.getDns().isCanceling() && !this.getDns().isCanceled()) {
86 return !this.getDns().isCanceling() && !this.getDns().isCanceled();
105 for (DNSRecord answer : this.getDns().getLocalHost().answers(DNSRecordClass.UNIQUE, this.getTTL())) {
118 for (DNSRecord answer : info.answers(DNSRecordClass.UNIQUE, this.getTTL(), this.getDns().getLocalHost())) {
130 this.getDns().recover();
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...]
Canceler.java 38 return "Canceler(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
104 for (DNSRecord answer : this.getDns().getLocalHost().answers(DNSRecordClass.UNIQUE, this.getTTL())) {
117 for (DNSRecord answer : info.answers(DNSRecordClass.UNIQUE, this.getTTL(), this.getDns().getLocalHost())) {
129 this.getDns().recover();
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 49 if (!this.getDns().isCanceling() && !this.getDns().isCanceled()) {
61 if (this.getDns().isCanceling() || this.getDns().isCanceled()) {
70 if (this.getDns().isAnnounced()) {
74 this.getDns().send(out);
83 this.getDns().recover();
TypeResolver.java 40 return "TypeResolver(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
51 for (String type : this.getDns().getServiceTypes().keySet()) {
52 ServiceTypeEntry typeEntry = this.getDns().getServiceTypes().get(type);
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);
ServiceResolver.java 38 return "ServiceResolver(" + (this.getDns() != null ? this.getDns().getName() : "") + ")";
49 for (ServiceInfo info : this.getDns().getServices().values()) {
52 // this.getDns().getLocalHost().getName()), now);
  /external/jmdns/src/javax/jmdns/impl/
SocketListener.java 77 public JmDNSImpl getDns() {
JmDNSImpl.java 555 public JmDNSImpl getDns() {
    [all...]
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...]

Completed in 77 milliseconds