/external/mockito/src/org/mockito/internal/stubbing/ |
D | InvocationContainerImpl.java | 48 public void addAnswer(Answer answer) { in addAnswer() method in InvocationContainerImpl 50 addAnswer(answer, false); in addAnswer() 54 addAnswer(answer, true); in addConsecutiveAnswer() 57 public void addAnswer(Answer answer, boolean isConsecutive) { in addAnswer() method in InvocationContainerImpl 65 stubbed.getFirst().addAnswer(answer); in addAnswer() 110 addAnswer(answersForStubbing.get(i), i != 0); in setMethodForStubbing()
|
D | OngoingStubbingImpl.java | 28 invocationContainerImpl.addAnswer(answer); in thenAnswer() 37 invocationContainerImpl.addAnswer(answer); in toAnswer()
|
D | StubbedInvocationMatcher.java | 37 public void addAnswer(Answer answer) { in addAnswer() method in StubbedInvocationMatcher
|
/external/jmdns/src/javax/jmdns/impl/tasks/ |
D | DNSTask.java | 110 … public DNSOutgoing addAnswer(DNSOutgoing out, DNSIncoming in, DNSRecord rec) throws IOException { in addAnswer() method in DNSTask 113 newOut.addAnswer(in, rec); in addAnswer() 125 newOut.addAnswer(in, rec); in addAnswer() 141 public DNSOutgoing addAnswer(DNSOutgoing out, DNSRecord rec, long now) throws IOException { in addAnswer() method in DNSTask 144 newOut.addAnswer(rec, now); in addAnswer() 156 newOut.addAnswer(rec, now); in addAnswer()
|
D | Responder.java | 144 out = this.addAnswer(out, _in, answer); in run()
|
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/ |
D | ServiceInfoResolver.java | 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()
|
D | TypeResolver.java | 53 …newOut = this.addAnswer(newOut, new DNSRecord.Pointer("_services._dns-sd._udp.local.", DNSRecordCl… in addAnswers()
|
D | ServiceResolver.java | 50 …newOut = this.addAnswer(newOut, new DNSRecord.Pointer(info.getType(), DNSRecordClass.CLASS_IN, DNS… in addAnswers()
|
/external/jmdns/src/javax/jmdns/impl/tasks/state/ |
D | Canceler.java | 105 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForDNS() 118 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForInfo()
|
D | Renewer.java | 106 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForDNS() 119 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForInfo()
|
D | Announcer.java | 105 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForDNS() 118 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForInfo()
|
/external/jmdns/src/javax/jmdns/impl/ |
D | DNSRecord.java | 89 …abstract DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgo… in addAnswer() method in DNSRecord 384 …DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) … in addAnswer() method in DNSRecord.Address 484 …DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) … in addAnswer() method in DNSRecord.Pointer 600 …DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) … in addAnswer() method in DNSRecord.Text 794 …DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) … in addAnswer() method in DNSRecord.Service 798 …return dns.addAnswer(in, addr, port, out, new DNSRecord.Service(info.getQualifiedName(), DNSRecord… in addAnswer() 871 …DNSOutgoing addAnswer(JmDNSImpl dns, DNSIncoming in, InetAddress addr, int port, DNSOutgoing out) … in addAnswer() method in DNSRecord.HostInformation
|
D | DNSOutgoing.java | 261 public void addAnswer(DNSIncoming in, DNSRecord rec) throws IOException { in addAnswer() method in DNSOutgoing 263 this.addAnswer(rec, 0); in addAnswer() 274 public void addAnswer(DNSRecord rec, long now) throws IOException { in addAnswer() method in DNSOutgoing
|
D | JmDNSImpl.java | 1504 …public DNSOutgoing addAnswer(DNSIncoming in, InetAddress addr, int port, DNSOutgoing out, DNSRecor… in addAnswer() method in JmDNSImpl 1510 newOut.addAnswer(in, rec); in addAnswer() 1517 newOut.addAnswer(in, rec); in addAnswer()
|
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/ |
D | ReturnsDeepStubs.java | 112 container.addAnswer(new Answer<Object>() {
|