Searched refs:ClientChannel (Results 1 - 22 of 22) sorted by relevance

/frameworks/native/libs/vr/libpdx_default_transport/private/servicefs/pdx/default_transport/
H A Dclient_channel.h10 using ClientChannel = ::android::pdx::servicefs::ClientChannel;
/frameworks/native/libs/vr/libpdx_default_transport/private/uds/pdx/default_transport/
H A Dclient_channel.h10 using ClientChannel = ::android::pdx::uds::ClientChannel;
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dclient_channel_factory.h14 virtual Status<std::unique_ptr<ClientChannel>> Connect(
H A Dmock_client_channel_factory.h13 Connect, Status<std::unique_ptr<ClientChannel>>(int64_t timeout_ms));
H A Dclient_channel.h16 class ClientChannel { class in namespace:android::pdx
18 virtual ~ClientChannel() = default;
32 // fds are owned by the ClientChannel and must never be closed by the caller.
68 // ClientChannel is invalidated however, the channel is kept alive by the
H A Dclient.h56 explicit Client(std::unique_ptr<ClientChannel> channel);
119 * ClientChannel::GetEventMask() to distinguish between events.
124 * Returns the underlying ClientChannel object.
126 ClientChannel* GetChannel() const { return channel_.get(); }
127 std::unique_ptr<ClientChannel>&& TakeChannel() { return std::move(channel_); }
143 std::unique_ptr<ClientChannel> channel_;
H A Dmock_client_channel.h10 class MockClientChannel : public ClientChannel {
/frameworks/native/libs/vr/libpdx_uds/
H A Dclient_channel.cpp140 ClientChannel::ClientChannel(LocalChannelHandle channel_handle) function in class:android::pdx::uds::ClientChannel
145 std::unique_ptr<pdx::ClientChannel> ClientChannel::Create(
147 return std::unique_ptr<pdx::ClientChannel>{
148 new ClientChannel{std::move(channel_handle)}};
151 ClientChannel::~ClientChannel() {
156 void* ClientChannel::AllocateTransactionState() { return new TransactionState; }
158 void ClientChannel
[all...]
H A Dclient_channel_factory.cpp57 Status<std::unique_ptr<pdx::ClientChannel>> ClientChannelFactory::Connect(
166 return ClientChannel::Create(ChannelManager::Get().CreateHandle(
H A Dchannel_event_set.cpp141 std::vector<ClientChannel::EventSource> ChannelEventReceiver::GetEventSources()
H A Dclient_channel_tests.cpp32 using android::pdx::uds::ClientChannel;
H A Dservice_framework_tests.cpp404 : BASE{android::pdx::uds::ClientChannel::Create(std::move(channel))} {}
H A Dremote_method_tests.cpp332 : BASE{android::pdx::uds::ClientChannel::Create(
/frameworks/native/libs/vr/libpdx_uds/private/uds/
H A Dclient_channel.h16 class ClientChannel : public pdx::ClientChannel { class in namespace:android::pdx::uds
18 ~ClientChannel() override;
20 static std::unique_ptr<pdx::ClientChannel> Create(
83 explicit ClientChannel(LocalChannelHandle channel_handle);
H A Dclient_channel_factory.h18 Status<std::unique_ptr<pdx::ClientChannel>> Connect(
H A Dchannel_event_set.h68 std::vector<ClientChannel::EventSource> GetEventSources() const;
/frameworks/native/libs/vr/libpdx/
H A Dclient_tests.cpp13 using android::pdx::ClientChannel;
61 explicit SimpleClient(std::unique_ptr<ClientChannel> channel)
84 explicit FailingClient(std::unique_ptr<ClientChannel> channel, int error_code)
117 Status<std::unique_ptr<ClientChannel>> OnConnect(int64_t /*timeout_ms*/) {
124 return Status<std::unique_ptr<ClientChannel>>{std::move(channel)};
H A Dclient.cpp59 Client::Client(std::unique_ptr<ClientChannel> channel)
/frameworks/native/libs/vr/libbufferhub/
H A Dbuffer_hub_client.cpp18 using android::pdx::default_transport::ClientChannel;
28 : Client(ClientChannel::Create(std::move(channel_handle))) {}
43 : Client{pdx::default_transport::ClientChannel::Create(
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
H A Dbuffer_hub_client.h95 std::vector<pdx::ClientChannel::EventSource> GetEventSources() const {
/frameworks/native/libs/vr/libdisplay/
H A Ddisplay_client.cpp25 : BASE{pdx::default_transport::ClientChannel::Create(
/frameworks/native/libs/vr/libbufferhubqueue/
H A Dbuffer_hub_queue_client.cpp48 : Client{pdx::default_transport::ClientChannel::Create(
575 std::unique_ptr<pdx::ClientChannel> channel = TakeChannel();

Completed in 595 milliseconds