Home
last modified time | relevance | path

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

/external/openscreen/osp/public/
Dservice_publisher.cc10 ServicePublisherError::ServicePublisherError() = default;
11 ServicePublisherError::ServicePublisherError(Code error, in ServicePublisherError() function in openscreen::osp::ServicePublisherError
14 ServicePublisherError::ServicePublisherError(
15 const ServicePublisherError& other) = default;
16 ServicePublisherError::~ServicePublisherError() = default;
18 ServicePublisherError& ServicePublisherError::operator=(
19 const ServicePublisherError& other) = default;
Dservice_publisher.h20 struct ServicePublisherError { struct
26 ServicePublisherError(); argument
27 ServicePublisherError(Code error, const std::string& message);
28 ServicePublisherError(const ServicePublisherError& other);
29 ~ServicePublisherError();
31 ServicePublisherError& operator=(const ServicePublisherError& other); argument
77 virtual void OnError(ServicePublisherError) = 0;
142 ServicePublisherError last_error() const { return last_error_; } in last_error()
148 ServicePublisherError last_error_;
/external/openscreen/osp/impl/
Dservice_publisher_impl_unittest.cc29 MOCK_METHOD1(OnError, void(ServicePublisherError));
Dmdns_responder_service_unittest.cc173 MOCK_METHOD1(OnError, void(ServicePublisherError));
/external/openscreen/osp/demo/
Dosp_demo.cc155 void OnError(ServicePublisherError) override {} in OnError() argument