Home
last modified time | relevance | path

Searched refs:addAnswer (Results 1 – 15 of 15) sorted by relevance

/external/mockito/src/org/mockito/internal/stubbing/
DInvocationContainerImpl.java48 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()
DOngoingStubbingImpl.java28 invocationContainerImpl.addAnswer(answer); in thenAnswer()
37 invocationContainerImpl.addAnswer(answer); in toAnswer()
DStubbedInvocationMatcher.java37 public void addAnswer(Answer answer) { in addAnswer() method in StubbedInvocationMatcher
/external/jmdns/src/javax/jmdns/impl/tasks/
DDNSTask.java110 … 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()
DResponder.java144 out = this.addAnswer(out, _in, answer); in run()
/external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DServiceInfoResolver.java65 …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()
DTypeResolver.java53 …newOut = this.addAnswer(newOut, new DNSRecord.Pointer("_services._dns-sd._udp.local.", DNSRecordCl… in addAnswers()
DServiceResolver.java50 …newOut = this.addAnswer(newOut, new DNSRecord.Pointer(info.getType(), DNSRecordClass.CLASS_IN, DNS… in addAnswers()
/external/jmdns/src/javax/jmdns/impl/tasks/state/
DCanceler.java105 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForDNS()
118 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForInfo()
DRenewer.java106 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForDNS()
119 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForInfo()
DAnnouncer.java105 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForDNS()
118 newOut = this.addAnswer(newOut, null, answer); in buildOutgoingForInfo()
/external/jmdns/src/javax/jmdns/impl/
DDNSRecord.java89 …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
DDNSOutgoing.java261 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
DJmDNSImpl.java1504 …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/
DReturnsDeepStubs.java112 container.addAnswer(new Answer<Object>() {