Home
last modified time | relevance | path

Searched refs:MdnsQuestionTracker (Results 1 – 5 of 5) sorted by relevance

/external/openscreen/discovery/mdns/
Dmdns_trackers.cc218 const MdnsQuestionTracker* question_tracker) const { in AddAssociatedQuery()
223 const MdnsQuestionTracker* question_tracker) const { in RemoveAssociatedQuery()
292 MdnsQuestionTracker::MdnsQuestionTracker(MdnsQuestion question, in MdnsQuestionTracker() function in openscreen::discovery::MdnsQuestionTracker
320 task_runner_->PostTask([this] { MdnsQuestionTracker::SendQuery(); }); in MdnsQuestionTracker()
325 MdnsQuestionTracker::SendQuery(); in MdnsQuestionTracker()
333 MdnsQuestionTracker::~MdnsQuestionTracker() = default;
335 bool MdnsQuestionTracker::AddAssociatedRecord( in AddAssociatedRecord()
340 bool MdnsQuestionTracker::RemoveAssociatedRecord( in RemoveAssociatedRecord()
345 std::vector<MdnsRecord> MdnsQuestionTracker::GetRecords() const { in GetRecords()
361 bool MdnsQuestionTracker::SendQuery() const { in SendQuery()
[all …]
Dmdns_trackers_unittest.cc118 std::unique_ptr<MdnsQuestionTracker> CreateQuestionTracker( in CreateQuestionTracker()
120 MdnsQuestionTracker::QueryType query_type = in CreateQuestionTracker()
121 MdnsQuestionTracker::QueryType::kContinuous) { in CreateQuestionTracker()
122 return std::make_unique<MdnsQuestionTracker>(question, &sender_, in CreateQuestionTracker()
203 std::unique_ptr<MdnsQuestionTracker> question = CreateQuestionTracker( in TEST_F()
204 a_question_, MdnsQuestionTracker::QueryType::kOneShot); in TEST_F()
205 std::unique_ptr<MdnsQuestionTracker> question2 = CreateQuestionTracker( in TEST_F()
206 a_question_, MdnsQuestionTracker::QueryType::kOneShot); in TEST_F()
234 std::unique_ptr<MdnsQuestionTracker> question = CreateQuestionTracker( in TEST_F()
235 a_question_, MdnsQuestionTracker::QueryType::kOneShot); in TEST_F()
[all …]
Dmdns_trackers.h99 class MdnsQuestionTracker; variable
135 bool AddAssociatedQuery(const MdnsQuestionTracker* question_tracker) const;
136 bool RemoveAssociatedQuery(const MdnsQuestionTracker* question_tracker) const;
202 class MdnsQuestionTracker : public MdnsTracker {
207 MdnsQuestionTracker(MdnsQuestion question,
215 ~MdnsQuestionTracker() override;
Dmdns_querier.h25 class MdnsQuestionTracker; variable
224 std::multimap<DomainName, std::unique_ptr<MdnsQuestionTracker>> questions_;
Dmdns_querier.cc823 auto tracker = std::make_unique<MdnsQuestionTracker>( in AddQuestion()
825 MdnsQuestionTracker* ptr = tracker.get(); in AddQuestion()