Home | History | Annotate | Download | only in mDNSCore

Lines Matching refs:SuppressQuery

3899 	// Temporarily suspend the SuppressQuery so that AnswerCurrentQuestionWithResourceRecord can answer the question
3900 if (QuerySuppressed(q)) { q->SuppressQuery = mDNSfalse; GenerateNegativeResponse(m); q->SuppressQuery = mDNStrue; }
4700 // SuppressQuery status does not affect questions that are answered using local records
7622 (q->SuppressQuery == question->SuppressQuery) && // Questions that are suppressed/not suppressed
8136 "Original question CurrentAnswers %d, new question CurrentAnswers %d, SuppressUnusable %d, SuppressQuery %d",
8137 qptr, CRDisplayString(m,rr), q->CurrentAnswers, qptr->CurrentAnswers, qptr->SuppressUnusable, qptr->SuppressQuery);
8228 // new questions, we would never change its SuppressQuery status.
8245 mDNSBool old = q->SuppressQuery;
8246 q->SuppressQuery = ShouldSuppressQuery(m, &q->qname, q->qtype, q->InterfaceID);
8247 if (q->SuppressQuery != old)
8253 if (q->SuppressQuery)
8258 q->SuppressQuery = mDNSfalse;
8260 q->SuppressQuery = mDNStrue;
8264 // and SuppressQuery status does not mean anything for these questions. As we are going to stop the
8279 // is a duplicate of non-SuppressUnusable question if it is not suppressed (SuppressQuery is false).
8281 // (SuppressQuery is true). The reason for this is that when a question is suppressed, we want an
8387 // Must do AuthInfo and SuppressQuery before calling FindDuplicateQuestion()
8390 question->SuppressQuery = ShouldSuppressQuery(m, &question->qname, question->qtype, question->InterfaceID);
8392 question->SuppressQuery = 0;
8583 "CurrentAnswers %d, SuppressQuery %d", q, CRDisplayString(m,rr), question->CurrentAnswers, q->CurrentAnswers, q->SuppressQuery);