Lines Matching refs:SuppressProbes

806             LogMsg("SetNextAnnounceProbeTime: m->SuppressProbes %d m->timenow %d diff %d", m->SuppressProbes, m->timenow, m->SuppressProbes - m->timenow);
829 // * If this is a record type that's going to probe, then we use the m->SuppressProbes time.
830 // * Otherwise, if it's not going to probe, but m->SuppressProbes is set because we have other
838 // * If it's not going to probe and m->SuppressProbes is not already set then we should announce immediately.
843 if (m->SuppressProbes == 0 || m->SuppressProbes - m->timenow < 0)
851 m->SuppressProbes = NonZeroTime(m->timenow + DefaultProbeIntervalForTypeUnique/2 + mDNSRandom(DefaultProbeIntervalForTypeUnique/2));
854 if (m->SuppressProbes - m->NextScheduledProbe >= 0)
855 m->SuppressProbes = NonZeroTime(m->NextScheduledProbe);
856 if (m->SuppressProbes - m->timenow < 0) // Make sure we don't set m->SuppressProbes excessively in the past
857 m->SuppressProbes = m->timenow;
860 if (m->SuppressProbes - m->NextScheduledQuery >= 0)
861 m->SuppressProbes = NonZeroTime(m->NextScheduledQuery);
862 if (m->SuppressProbes - m->timenow < 0) // Make sure we don't set m->SuppressProbes excessively in the past
863 m->SuppressProbes = m->timenow;
866 if (m->SuppressSending && m->SuppressProbes - m->SuppressSending < 0)
867 m->SuppressProbes = NonZeroTime(m->SuppressSending);
869 if (m->SuppressProbes - m->timenow > mDNSPlatformOneSecond * 8)
871 LogMsg("InitializeLastAPTime ERROR m->SuppressProbes %d m->NextScheduledProbe %d m->NextScheduledQuery %d m->SuppressSending %d %d",
872 m->SuppressProbes - m->timenow,
877 m->SuppressProbes = NonZeroTime(m->timenow + DefaultProbeIntervalForTypeUnique/2 + mDNSRandom(DefaultProbeIntervalForTypeUnique/2));
880 rr->LastAPTime = m->SuppressProbes - rr->ThisAPInterval;
882 else if (m->SuppressProbes && m->SuppressProbes - m->timenow >= 0)
883 rr->LastAPTime = m->SuppressProbes - rr->ThisAPInterval + DefaultProbeIntervalForTypeUnique * DefaultProbeCountForTypeUnique + rr->ThisAPInterval / 2;
1551 m->SuppressProbes = NonZeroTime(m->timenow + mDNSPlatformOneSecond * 5);
5103 if (m->SuppressProbes && m->timenow - m->SuppressProbes >= 0) m->SuppressProbes = 0;
7077 m->SuppressProbes = NonZeroTime(m->timenow + mDNSPlatformOneSecond);
12940 if (m->SuppressProbes == 0 ||
12941 m->SuppressProbes - NonZeroTime(m->timenow + probedelay) < 0)
12942 m->SuppressProbes = NonZeroTime(m->timenow + probedelay);
14335 m->SuppressProbes = 0;