Home
last modified time | relevance | path

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

/frameworks/native/libs/vr/libpdx_uds/
Dclient_channel.cpp140 ClientChannel::ClientChannel(LocalChannelHandle channel_handle) in ClientChannel() function in android::pdx::uds::ClientChannel
145 std::unique_ptr<pdx::ClientChannel> ClientChannel::Create( in Create()
147 return std::unique_ptr<pdx::ClientChannel>{ in Create()
148 new ClientChannel{std::move(channel_handle)}}; in Create()
151 ClientChannel::~ClientChannel() { in ~ClientChannel()
156 void* ClientChannel::AllocateTransactionState() { return new TransactionState; } in AllocateTransactionState()
158 void ClientChannel::FreeTransactionState(void* state) { in FreeTransactionState()
162 Status<void> ClientChannel::SendImpulse(int opcode, const void* buffer, in SendImpulse()
178 Status<int> ClientChannel::SendAndReceive(void* transaction_state, int opcode, in SendAndReceive()
210 Status<int> ClientChannel::SendWithInt(void* transaction_state, int opcode, in SendWithInt()
[all …]
Dclient_channel_factory.cpp57 Status<std::unique_ptr<pdx::ClientChannel>> ClientChannelFactory::Connect( in Connect()
166 return ClientChannel::Create(ChannelManager::Get().CreateHandle( in Connect()
Dchannel_event_set.cpp141 std::vector<ClientChannel::EventSource> ChannelEventReceiver::GetEventSources() in GetEventSources()
Dclient_channel_tests.cpp32 using android::pdx::uds::ClientChannel;
Dservice_framework_tests.cpp404 : BASE{android::pdx::uds::ClientChannel::Create(std::move(channel))} {} in TestClient()
Dremote_method_tests.cpp332 : BASE{android::pdx::uds::ClientChannel::Create( in TestClient()
/frameworks/native/libs/vr/libpdx_uds/private/uds/
Dclient_channel.h16 class ClientChannel : public pdx::ClientChannel {
18 ~ClientChannel() override;
20 static std::unique_ptr<pdx::ClientChannel> Create(
83 explicit ClientChannel(LocalChannelHandle channel_handle);
Dclient_channel_factory.h18 Status<std::unique_ptr<pdx::ClientChannel>> Connect(
Dchannel_event_set.h68 std::vector<ClientChannel::EventSource> GetEventSources() const;
/frameworks/native/libs/vr/libpdx_default_transport/private/servicefs/pdx/default_transport/
Dclient_channel.h10 using ClientChannel = ::android::pdx::servicefs::ClientChannel; variable
/frameworks/native/libs/vr/libpdx_default_transport/private/uds/pdx/default_transport/
Dclient_channel.h10 using ClientChannel = ::android::pdx::uds::ClientChannel; variable
/frameworks/native/libs/vr/libpdx/private/pdx/
Dclient.h56 explicit Client(std::unique_ptr<ClientChannel> channel);
126 ClientChannel* GetChannel() const { return channel_.get(); } in GetChannel()
127 std::unique_ptr<ClientChannel>&& TakeChannel() { return std::move(channel_); } in TakeChannel()
143 std::unique_ptr<ClientChannel> channel_;
Dclient_channel.h16 class ClientChannel {
18 virtual ~ClientChannel() = default;
Dclient_channel_factory.h14 virtual Status<std::unique_ptr<ClientChannel>> Connect(
Dmock_client_channel_factory.h13 Connect, Status<std::unique_ptr<ClientChannel>>(int64_t timeout_ms));
Dmock_client_channel.h10 class MockClientChannel : public ClientChannel {
/frameworks/native/libs/vr/libpdx/
Dclient_tests.cpp13 using android::pdx::ClientChannel;
61 explicit SimpleClient(std::unique_ptr<ClientChannel> channel) in SimpleClient()
84 explicit FailingClient(std::unique_ptr<ClientChannel> channel, int error_code) in FailingClient()
117 Status<std::unique_ptr<ClientChannel>> OnConnect(int64_t /*timeout_ms*/) { in OnConnect()
124 return Status<std::unique_ptr<ClientChannel>>{std::move(channel)}; in OnConnect()
Dclient.cpp59 Client::Client(std::unique_ptr<ClientChannel> channel) in Client()
/frameworks/native/libs/vr/libbufferhub/
Dbuffer_hub_client.cpp18 using android::pdx::default_transport::ClientChannel;
28 : Client(ClientChannel::Create(std::move(channel_handle))) {} in BufferHubClient()
43 : Client{pdx::default_transport::ClientChannel::Create( in BufferHubBuffer()
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/
Dbuffer_hub_client.h95 std::vector<pdx::ClientChannel::EventSource> GetEventSources() const { in GetEventSources()
/frameworks/native/libs/vr/libdisplay/
Ddisplay_client.cpp25 : BASE{pdx::default_transport::ClientChannel::Create( in Surface()
/frameworks/native/libs/vr/libbufferhubqueue/
Dbuffer_hub_queue_client.cpp48 : Client{pdx::default_transport::ClientChannel::Create( in BufferHubQueue()
575 std::unique_ptr<pdx::ClientChannel> channel = TakeChannel(); in TakeAsParcelable()