Home
last modified time | relevance | path

Searched refs:UnregisterRecord (Results 1 – 9 of 9) sorted by relevance

/external/openscreen/discovery/mdns/
Dmdns_publisher_unittest.cc204 EXPECT_TRUE(publisher_.UnregisterRecord(record2).ok()); in TestUniqueRecordRegistrationWorkflow()
211 EXPECT_FALSE(publisher_.UnregisterRecord(record2).ok()); in TestUniqueRecordRegistrationWorkflow()
222 EXPECT_TRUE(publisher_.UnregisterRecord(record).ok()); in TestUniqueRecordRegistrationWorkflow()
323 EXPECT_TRUE(publisher_.UnregisterRecord(record2).ok()); in TEST_F()
330 EXPECT_FALSE(publisher_.UnregisterRecord(record2).ok()); in TEST_F()
341 EXPECT_TRUE(publisher_.UnregisterRecord(record).ok()); in TEST_F()
459 EXPECT_TRUE(publisher_.UnregisterRecord(record).ok()); in TEST_F()
Dmdns_service_impl.cc140 Error MdnsServiceImpl::UnregisterRecord(const MdnsRecord& record) { in UnregisterRecord() function in openscreen::discovery::MdnsServiceImpl
141 return publisher_->UnregisterRecord(record); in UnregisterRecord()
Dmdns_service_impl.h63 Error UnregisterRecord(const MdnsRecord& record) override;
Dmdns_publisher.h76 Error UnregisterRecord(const MdnsRecord& record);
Dmdns_publisher.cc97 Error MdnsPublisher::UnregisterRecord(const MdnsRecord& record) { in UnregisterRecord() function in openscreen::discovery::MdnsPublisher
/external/openscreen/discovery/dnssd/impl/
Dpublisher_impl_unittest.cc54 MOCK_METHOD1(UnregisterRecord, Error(const MdnsRecord& record));
134 EXPECT_CALL(*mdns_service(), UnregisterRecord(_)) in TEST_F()
211 EXPECT_CALL(*mdns_service(), UnregisterRecord(_)) in TEST_F()
Dpublisher_impl.cc209 auto error = mdns_publisher_->UnregisterRecord(pair.second.first.value()); in UpdatePublishedRegistration()
244 auto publisher_error = mdns_publisher_->UnregisterRecord(mdns_record); in DeregisterAll()
Dquerier_impl_unittest.cc54 MOCK_METHOD1(UnregisterRecord, Error(const MdnsRecord&));
/external/openscreen/discovery/mdns/public/
Dmdns_service.h85 virtual Error UnregisterRecord(const MdnsRecord& record) = 0;