Searched defs:ClientChannel (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/libs/vr/libpdx/private/pdx/
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
/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);
/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...]

Completed in 70 milliseconds