/external/jmdns/src/javax/jmdns/impl/tasks/ |
D | DNSTask.java | 79 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/ |
D | ServiceInfoResolver.java | 62 DNSOutgoing newOut = out; in addAnswers() local 65 …newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifie… in addAnswers() 66 …newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getQualifie… in addAnswers() 68 …newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getServer()… in addAnswers() 69 …newOut = this.addAnswer(newOut, (DNSRecord) this.getDns().getCache().getDNSEntry(_info.getServer()… in addAnswers() 72 return newOut; in addAnswers() 81 DNSOutgoing newOut = out; in addQuestions() local 83 …newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_info.getQualifiedName(), DNSRecordType.… in addQuestions() 84 …newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_info.getQualifiedName(), DNSRecordType.… in addQuestions() 86 …newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_info.getServer(), DNSRecordType.TYPE_A,… in addQuestions() [all …]
|
D | ServiceResolver.java | 47 DNSOutgoing newOut = out; in addAnswers() local 50 …newOut = 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 64 …newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(_type, DNSRecordType.TYPE_PTR, DNSRecord… in addQuestions() 66 return newOut; in addQuestions()
|
D | TypeResolver.java | 49 DNSOutgoing newOut = out; in addAnswers() local 53 …newOut = 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/ |
D | Prober.java | 116 DNSOutgoing newOut = out; in buildOutgoingForDNS() local 117 …newOut.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 131 …newOut = this.addQuestion(newOut, DNSQuestion.newQuestion(info.getQualifiedName(), DNSRecordType.T… in buildOutgoingForInfo() 133 …newOut = this.addAuthoritativeAnswer(newOut, new DNSRecord.Service(info.getQualifiedName(), DNSRec… in buildOutgoingForInfo() 135 return newOut; in buildOutgoingForInfo()
|
D | Canceler.java | 103 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()
|
D | Announcer.java | 103 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()
|
D | Renewer.java | 104 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/ |
D | FileRemapper.cpp | 157 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/ |
D | JmDNSImpl.java | 1505 DNSOutgoing newOut = out; in addAnswer() local 1506 if (newOut == null) { in addAnswer() 1507 …newOut = 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() 1516 …newOut = 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/ |
D | ThreadGroupTest.java | 416 java.io.PrintStream newOut = new java.io.PrintStream(contentsStream); in test_list() local 419 System.setOut(newOut); in test_list()
|