HomeSort by relevance Sort by last modified time
    Searched refs:ClientChannel (Results 1 - 23 of 23) sorted by null

  /frameworks/native/libs/vr/libpdx_default_transport/private/servicefs/pdx/default_transport/
client_channel.h 10 using ClientChannel = ::android::pdx::servicefs::ClientChannel;
  /frameworks/native/libs/vr/libpdx_default_transport/private/uds/pdx/default_transport/
client_channel.h 10 using ClientChannel = ::android::pdx::uds::ClientChannel;
  /frameworks/native/libs/vr/libpdx/private/pdx/
client_channel_factory.h 14 virtual Status<std::unique_ptr<ClientChannel>> Connect(
mock_client_channel_factory.h 13 Connect, Status<std::unique_ptr<ClientChannel>>(int64_t timeout_ms));
client_channel.h 16 class ClientChannel {
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
client.h 56 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_;
mock_client_channel.h 10 class MockClientChannel : public ClientChannel {
  /frameworks/native/libs/vr/libpdx_uds/
client_channel.cpp 140 ClientChannel::ClientChannel(LocalChannelHandle channel_handle)
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::FreeTransactionState(void* state)
    [all...]
client_channel_factory.cpp 57 Status<std::unique_ptr<pdx::ClientChannel>> ClientChannelFactory::Connect(
166 return ClientChannel::Create(ChannelManager::Get().CreateHandle(
channel_event_set.cpp 141 std::vector<ClientChannel::EventSource> ChannelEventReceiver::GetEventSources()
client_channel_tests.cpp 32 using android::pdx::uds::ClientChannel;
service_framework_tests.cpp 404 : BASE{android::pdx::uds::ClientChannel::Create(std::move(channel))} {}
remote_method_tests.cpp 332 : BASE{android::pdx::uds::ClientChannel::Create(
  /cts/tests/framework/base/windowmanager/src/android/server/wm/
TestLogService.java 38 static class ClientChannel {
43 ClientChannel(String stopKey) {
48 private static Map<String, ClientChannel> mChannels = new HashMap<>();
74 mChannels.put(logtag, new ClientChannel(stopKey));
112 ClientChannel channel = mChannels.get(logtag);
  /frameworks/native/libs/vr/libpdx_uds/private/uds/
client_channel.h 16 class ClientChannel : public pdx::ClientChannel {
18 ~ClientChannel() override;
20 static std::unique_ptr<pdx::ClientChannel> Create(
83 explicit ClientChannel(LocalChannelHandle channel_handle);
client_channel_factory.h 18 Status<std::unique_ptr<pdx::ClientChannel>> Connect(
channel_event_set.h 68 std::vector<ClientChannel::EventSource> GetEventSources() const;
  /frameworks/native/libs/vr/libpdx/
client_tests.cpp 13 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)};
client.cpp 59 Client::Client(std::unique_ptr<ClientChannel> channel)
  /frameworks/native/libs/vr/libbufferhub/
buffer_hub_client.cpp 18 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/
buffer_hub_client.h 95 std::vector<pdx::ClientChannel::EventSource> GetEventSources() const {
  /frameworks/native/libs/vr/libdisplay/
display_client.cpp 25 : BASE{pdx::default_transport::ClientChannel::Create(
  /frameworks/native/libs/vr/libbufferhubqueue/
buffer_hub_queue_client.cpp 48 : Client{pdx::default_transport::ClientChannel::Create(
575 std::unique_ptr<pdx::ClientChannel> channel = TakeChannel();

Completed in 193 milliseconds