Home
last modified time | relevance | path

Searched refs:endpoint_or_error (Results 1 – 2 of 2) sorted by relevance

/external/openscreen/discovery/dnssd/impl/
Ddns_data_graph_unittest.cc269 ErrorOr<DnsSdInstanceEndpoint> endpoint_or_error = std::move(endpoints[0]); in TEST_F() local
270 ASSERT_TRUE(endpoint_or_error.is_value()); in TEST_F()
271 DnsSdInstanceEndpoint endpoint = std::move(endpoint_or_error.value()); in TEST_F()
282 endpoint_or_error = std::move(endpoints[0]); in TEST_F()
283 ASSERT_TRUE(endpoint_or_error.is_value()); in TEST_F()
284 DnsSdInstanceEndpoint endpoint2 = std::move(endpoint_or_error.value()); in TEST_F()
315 ErrorOr<DnsSdInstanceEndpoint> endpoint_or_error = std::move(endpoints[0]); in TEST_F() local
316 ASSERT_TRUE(endpoint_or_error.is_value()); in TEST_F()
317 DnsSdInstanceEndpoint endpoint_a = std::move(endpoint_or_error.value()); in TEST_F()
328 endpoint_or_error = std::move(endpoints[0]); in TEST_F()
[all …]
Ddns_data_graph.cc551 for (auto& endpoint_or_error : child_endpoints) { in CalculatePtrRecordEndpoints() local
552 endpoints.push_back(std::move(endpoint_or_error)); in CalculatePtrRecordEndpoints()