Home
last modified time | relevance | path

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

/aosp12/frameworks/native/libs/vr/libpdx/
H A Dservice.cpp442 : name_(name), endpoint_{std::move(endpoint)} { in Service()
443 if (!endpoint_)
446 const auto status = endpoint_->SetService(this);
452 if (endpoint_) { in ~Service()
453 const auto status = endpoint_->SetService(nullptr); in ~Service()
478 const auto status = endpoint_->SetChannel(channel_id, channel.get()); in SetChannel()
512 const auto status = endpoint_->CloseChannel(channel_id); in CloseChannel()
559 Status<int> ret = endpoint_->CheckChannel( in CheckChannel()
647 const auto status = endpoint_->MessageReceive(&message); in ReceiveAndDispatch()
658 endpoint_->MessageReply(&message, -EINVAL); in ReceiveAndDispatch()
[all …]
/aosp12/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dservice.h560 Endpoint* endpoint() const { return endpoint_.get(); } in endpoint()
636 std::unique_ptr<Endpoint> endpoint_; variable