Lines Matching refs:ProbeCount

805             LogMsg("SetNextAnnounceProbeTime: ProbeCount %d Next in %d %s", rr->ProbeCount, (rr->LastAPTime + rr->ThisAPInterval) - m->timenow, ARDisplayString(m, rr));
840 if (rr->ProbeCount)
958 rr->ProbeCount = DefaultProbeCountForRecordType(rr->resrec.RecordType);
1035 rr->ProbeCount = 0;
1322 rr->ProbeCount = DefaultProbeCountForRecordType(rr->resrec.RecordType);
1446 rr->ProbeCount = 0;
1457 rr->ProbeCount = 0;
1478 // Setting ProbeCount to zero will cause SendQueries() to advance this record to
1481 rr->ProbeCount = 0;
1602 for (r2 = m->DuplicateRecords; r2; r2=r2->next) if (RecordIsLocalDuplicate(r2, rr)) r2->ProbeCount = 0xFF;
1627 dup->ProbeCount = rr->ProbeCount;
1814 if (r2->ProbeCount != 0xFF)
3511 else if (ar->ProbeCount)
3520 LogSPS("SendQueries ARP Probe %d %s %s", ar->ProbeCount, InterfaceNameForID(m, ar->resrec.InterfaceID), ARDisplayString(m,ar));
3525 LogSPS("SendQueries NDP Probe %d %s %s", ar->ProbeCount, InterfaceNameForID(m, ar->resrec.InterfaceID), ARDisplayString(m,ar));
3536 // than DefaultProbeCountForTypeUnique. Here we detect that state and reset ar->ProbeCount back to the right value.
3537 if (ar->ProbeCount > DefaultProbeCountForTypeUnique)
3538 ar->ProbeCount = DefaultProbeCountForTypeUnique;
3539 ar->ProbeCount--;
3541 if (ar->ProbeCount == 0)
3544 // on our duplicate list which should similarly have their ProbeCount cleared to zero...
3548 r2->ProbeCount = 0;
3577 if (ar->resrec.RecordType == kDNSRecordTypeUnique && ar->ProbeCount == 0 && !ar->Acknowledged)
3653 mDNSBool ucast = (ar->ProbeCount >= DefaultProbeCountForTypeUnique-1) && m->CanReceiveUnicastOn5353 && intf->SupportsUnicastMDNSResponse;
3666 ar->resrec.name->c, DNSTypeName(ar->resrec.rrtype), ar->ProbeCount);
5586 rr->ProbeCount = DefaultProbeCountForRecordType(rr->resrec.RecordType);
7070 LogMsg("ResolveSimultaneousProbe: %p Our Record %d %s %08lX %s", our->resrec.InterfaceID, our->ProbeCount, msg, our->resrec.rdatahash, ARDisplayString(m, our));
7078 our->ProbeCount = DefaultProbeCountForTypeUnique;
7088 LogMsg("ResolveSimultaneousProbe: %p Our Record %d ign: %08lX %s", our->resrec.InterfaceID, our->ProbeCount, our->resrec.rdatahash, ARDisplayString(m, our));
9099 // If we've just whacked this record's ProbeCount, don't need to do it again
9100 if (rr->ProbeCount > DefaultProbeCountForTypeUnique)
9102 else if (rr->ProbeCount == DefaultProbeCountForTypeUnique)
9112 // We set ProbeCount to one more than the usual value so we know we've already touched this record.
9116 rr->ProbeCount = DefaultProbeCountForTypeUnique + 1;
9127 LogMsg("mDNSCoreReceiveResponse: ProbeCount %d; will deregister %s", rr->ProbeCount, ARDisplayString(m, rr));
13668 // To handle the second case, we reset ProbeCount, so we'll suppress our own answers for a while, to avoid
13676 rr->ProbeCount = DefaultProbeCountForTypeUnique;
13680 // still going to sleep, so we just reset rr->ProbeCount so we'll continue probing until it stops responding.