Home
last modified time | relevance | path

Searched refs:ChannelEventReceiver (Results 1 – 5 of 5) sorted by relevance

/frameworks/native/libs/vr/libpdx_uds/private/uds/
Dchannel_event_set.h38 class ChannelEventReceiver {
40 ChannelEventReceiver() = default;
41 ChannelEventReceiver(LocalHandle data_fd, LocalHandle pollin_event_fd,
43 ChannelEventReceiver(ChannelEventReceiver&&) = default;
44 ChannelEventReceiver& operator=(ChannelEventReceiver&&) = default;
76 ChannelEventReceiver(const ChannelEventReceiver&) = delete;
77 void operator=(const ChannelEventReceiver&) = delete;
Dchannel_manager.h23 ChannelEventReceiver* GetChannelData(int32_t handle);
31 std::unordered_map<int32_t, ChannelEventReceiver> channels_;
Dclient_channel.h90 ChannelEventReceiver* channel_data_;
/frameworks/native/libs/vr/libpdx_uds/
Dchannel_event_set.cpp71 ChannelEventReceiver::ChannelEventReceiver(LocalHandle data_fd, in ChannelEventReceiver() function in android::pdx::uds::ChannelEventReceiver
116 Status<int> ChannelEventReceiver::PollPendingEvents(int timeout_ms) const { in PollPendingEvents()
136 Status<int> ChannelEventReceiver::GetPendingEvents() const { in GetPendingEvents()
141 std::vector<ClientChannel::EventSource> ChannelEventReceiver::GetEventSources() in GetEventSources()
Dchannel_manager.cpp32 ChannelEventReceiver{std::move(data_fd), std::move(pollin_event_fd), in CreateHandle()
44 ChannelEventReceiver* ChannelManager::GetChannelData(int32_t handle) { in GetChannelData()