Home
last modified time | relevance | path

Searched refs:newOut (Results 1 – 11 of 11) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/tasks/
DDNSTask.java79 DNSOutgoing newOut = out; in addQuestion() local
81 newOut.addQuestion(rec); in addQuestion()
83 int flags = newOut.getFlags(); in addQuestion()
84 boolean multicast = newOut.isMulticast(); in addQuestion()
85 int maxUDPPayload = newOut.getMaxUDPPayload(); in addQuestion()
86 int id = newOut.getId(); in addQuestion()
88 newOut.setFlags(flags | DNSConstants.FLAGS_TC); in addQuestion()
89 newOut.setId(id); in addQuestion()
90 this._jmDNSImpl.send(newOut); in addQuestion()
92 newOut = new DNSOutgoing(flags, multicast, maxUDPPayload); in addQuestion()
[all …]
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DServiceInfoResolver.java62 DNSOutgoing newOut = out; in addAnswers() local
65newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifie… in addAnswers()
66newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifie… in addAnswers()
68newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getServer()… in addAnswers()
69newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getServer()… in addAnswers()
72 return newOut; in addAnswers()
81 DNSOutgoing newOut = out; in addQuestions() local
83newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_info.getQualifiedName(), DNSRecordType.… in addQuestions()
84newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_info.getQualifiedName(), DNSRecordType.… in addQuestions()
86newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_info.getServer(), DNSRecordType.TYPE_A,… in addQuestions()
[all …]
DServiceResolver.java47 DNSOutgoing newOut = out; in addAnswers() local
50newOut = this.addAnswer(newOut, new DNSRecord.Pointer(info.getType(), DNSRecordClass.CLASS_IN, DNS… in addAnswers()
54 return newOut; in addAnswers()
63 DNSOutgoing newOut = out; in addQuestions() local
64newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_type, DNSRecordType.TYPE_PTR, DNSRecord… in addQuestions()
66 return newOut; in addQuestions()
DTypeResolver.java49 DNSOutgoing newOut = out; in addAnswers() local
53newOut = this.addAnswer(newOut, new DNSRecord.Pointer("_services._dns-sd._udp.local.", DNSRecordCl… in addAnswers()
55 return newOut; in addAnswers()
/external/jmdns/src/javax/jmdns/impl/tasks/state/
DProber.java116 DNSOutgoing newOut = out; in buildOutgoingForDNS() local
117newOut.addQuestion(DNSQuestion.newQuestion(this.getDns().getLocalHost().getName(), DNSRecordType.T… in buildOutgoingForDNS()
119 newOut = this.addAuthoritativeAnswer(newOut, answer); in buildOutgoingForDNS()
121 return newOut; in buildOutgoingForDNS()
130 DNSOutgoing newOut = out; in buildOutgoingForInfo() local
131newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(info.getQualifiedName(), DNSRecordType.T… in buildOutgoingForInfo()
133newOut = this.addAuthoritativeAnswer(newOut, new DNSRecord.Service(info.getQualifiedName(), DNSRec… in buildOutgoingForInfo()
135 return newOut; in buildOutgoingForInfo()
DCanceler.java103 DNSOutgoing newOut = out; in buildOutgoingForDNS() local
105 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForDNS()
107 return newOut; in buildOutgoingForDNS()
116 DNSOutgoing newOut = out; in buildOutgoingForInfo() local
118 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForInfo()
120 return newOut; in buildOutgoingForInfo()
DAnnouncer.java103 DNSOutgoing newOut = out; in buildOutgoingForDNS() local
105 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForDNS()
107 return newOut; in buildOutgoingForDNS()
116 DNSOutgoing newOut = out; in buildOutgoingForInfo() local
118 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForInfo()
120 return newOut; in buildOutgoingForInfo()
DRenewer.java104 DNSOutgoing newOut = out; in buildOutgoingForDNS() local
106 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForDNS()
108 return newOut; in buildOutgoingForDNS()
117 DNSOutgoing newOut = out; in buildOutgoingForInfo() local
119 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForInfo()
121 return newOut; in buildOutgoingForInfo()
/external/clang/lib/ARCMigrate/
DFileRemapper.cpp157 llvm::raw_fd_ostream newOut(fd, /*shouldClose=*/true); in flushToFile() local
159 newOut.write(mem->getBufferStart(), mem->getBufferSize()); in flushToFile()
160 newOut.close(); in flushToFile()
/external/jmdns/src/javax/jmdns/impl/
DJmDNSImpl.java1505 DNSOutgoing newOut = out; in addAnswer() local
1506 if (newOut == null) { in addAnswer()
1507newOut = new DNSOutgoing(DNSConstants.FLAGS_QR_RESPONSE | DNSConstants.FLAGS_AA, false, in.getSend… in addAnswer()
1510 newOut.addAnswer(in, rec); in addAnswer()
1512 newOut.setFlags(newOut.getFlags() | DNSConstants.FLAGS_TC); in addAnswer()
1513 newOut.setId(in.getId()); in addAnswer()
1514 send(newOut); in addAnswer()
1516newOut = new DNSOutgoing(DNSConstants.FLAGS_QR_RESPONSE | DNSConstants.FLAGS_AA, false, in.getSend… in addAnswer()
1517 newOut.addAnswer(in, rec); in addAnswer()
1519 return newOut; in addAnswer()
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DThreadGroupTest.java416 java.io.PrintStream newOut = new java.io.PrintStream(contentsStream); in test_list() local
419 System.setOut(newOut); in test_list()