OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_authoritativeAnswers
(Results
1 - 3
of
3
) sorted by null
/external/jmdns/src/javax/jmdns/impl/
DNSMessage.java
46
protected final List<DNSRecord>
_authoritativeAnswers
;
62
_authoritativeAnswers
= Collections.synchronizedList(new LinkedList<DNSRecord>());
135
List<DNSRecord> aList = new ArrayList<DNSRecord>(_answers.size() +
_authoritativeAnswers
.size() + _additionals.size());
137
aList.addAll(
_authoritativeAnswers
);
160
return
_authoritativeAnswers
;
237
for (DNSRecord answer :
_authoritativeAnswers
) {
DNSIncoming.java
222
_authoritativeAnswers
.add(rec);
264
in.
_authoritativeAnswers
.addAll(this.
_authoritativeAnswers
);
511
for (DNSRecord record :
_authoritativeAnswers
) {
537
this.
_authoritativeAnswers
.addAll(that.getAuthorities());
DNSOutgoing.java
301
_authoritativeAnswers
.add(rec);
349
for (DNSRecord record :
_authoritativeAnswers
) {
426
for (DNSRecord record :
_authoritativeAnswers
) {
Completed in 442 milliseconds