• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/mDNSResponder-561.1.1/mDNSCore/

Lines Matching defs:nta

1042     if (rr->nta) { CancelGetZoneData(m, rr->nta); rr->nta = mDNSNULL; }
1328 rr->nta = mDNSNULL;
1690 if (rr->nta) { CancelGetZoneData(m, rr->nta); rr->nta = mDNSNULL; }
5332 if (question->nta) { CancelGetZoneData(m, question->nta); question->nta = mDNSNULL; }
5382 // question) through their "nta" pointer. Normally when the original query stops, it stops the
5394 if (q == &refq->nta->question)
10410 q->nta = question->nta;
10435 question->nta = mDNSNULL; // If we've got a GetZoneData in progress, transfer it to the newly active question
10441 if (q->nta)
10443 LogInfo("UpdateQuestionDuplicates transferred nta pointer for %##s (%s)", q->qname.c, DNSTypeName(q->qtype));
10444 q->nta->ZoneDataContext = q;
11539 question->nta = mDNSNULL;
11731 mDNSexport void CancelGetZoneData(mDNS *const m, ZoneData *nta)
11733 debugf("CancelGetZoneData %##s (%s)", nta->question.qname.c, DNSTypeName(nta->question.qtype));
11737 if (nta->question.ThisQInterval != -1)
11739 mDNS_StopQuery_internal(m, &nta->question);
11740 if (nta->question.ThisQInterval != -1)
11741 LogMsg("CancelGetZoneData: Question %##s (%s) ThisQInterval %d not -1", nta->question.qname.c, DNSTypeName(nta->question.qtype), nta->question.ThisQInterval);
11743 mDNSPlatformMemFree(nta);
11879 // wait until we send the refresh above which needs the nta
11880 if (question->nta) { CancelGetZoneData(m, question->nta); question->nta = mDNSNULL; }
12700 // be accepted as a valid response. If we accept the response, we might free the new "nta"
12701 if (rr->nta) { rr->updateid = zeroID; CancelGetZoneData(m, rr->nta); }
12702 rr->nta = StartGetZoneData(m, rr->resrec.name, ZoneServiceUpdate, RecordRegistrationGotZoneData, rr);