Home
last modified time | relevance | path

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

/external/openscreen/discovery/dnssd/impl/
Ddns_data_graph_unittest.cc63 ApplyDataRecordChange(std::move(record), RecordChangedEvent::kCreated); in TriggerRecordCreation()
75 ApplyDataRecordChange(std::move(record), RecordChangedEvent::kCreated); in TriggerRecordCreationWithCallback()
89 Error ApplyDataRecordChange(MdnsRecord record, RecordChangedEvent event) { in ApplyDataRecordChange() function in openscreen::discovery::DnsDataGraphTests
90 return graph_->ApplyDataRecordChange( in ApplyDataRecordChange()
129 Error result = ApplyDataRecordChange(GetFakeSrvRecord(primary_domain_), in TEST_F()
181 auto result = ApplyDataRecordChange(ptr, RecordChangedEvent::kExpired); in TEST_F()
198 auto result = ApplyDataRecordChange(srv, RecordChangedEvent::kExpired); in TEST_F()
212 auto result = ApplyDataRecordChange(srv, RecordChangedEvent::kCreated); in TEST_F()
223 auto result = ApplyDataRecordChange(srv, RecordChangedEvent::kUpdated); in TEST_F()
234 auto result = ApplyDataRecordChange(srv, RecordChangedEvent::kExpired); in TEST_F()
[all …]
Ddns_data_graph.cc69 Error ApplyDataRecordChange(MdnsRecord record,
101 Error ApplyDataRecordChange(MdnsRecord record, RecordChangedEvent event);
240 Error DnsDataGraphImpl::Node::ApplyDataRecordChange(MdnsRecord record, in ApplyDataRecordChange() function in openscreen::discovery::__anon102d81ef0111::DnsDataGraphImpl::Node
409 Error DnsDataGraphImpl::ApplyDataRecordChange( in ApplyDataRecordChange() function in openscreen::discovery::__anon102d81ef0111::DnsDataGraphImpl
425 it->second->ApplyDataRecordChange(std::move(record), event); in ApplyDataRecordChange()
Dquerier_impl_unittest.cc73 MOCK_METHOD4(ApplyDataRecordChange,
475 EXPECT_CALL(mock_graph, ApplyDataRecordChange(_, _, _, _)) in TEST_F()
497 EXPECT_CALL(mock_graph, ApplyDataRecordChange(_, _, _, _)) in TEST_F()
522 EXPECT_CALL(mock_graph, ApplyDataRecordChange(_, _, _, _)) in TEST_F()
552 EXPECT_CALL(mock_graph, ApplyDataRecordChange(_, _, _, _)) in TEST_F()
597 EXPECT_CALL(mock_graph, ApplyDataRecordChange(_, _, _, _)) in TEST_F()
648 EXPECT_CALL(mock_graph, ApplyDataRecordChange(_, _, _, _)) in TEST_F()
Ddns_data_graph.h117 virtual Error ApplyDataRecordChange(
Dquerier_impl.cc463 graph_->ApplyDataRecordChange(record, event, std::move(creation_callback), in ApplyRecordChanges()