Searched defs:data_fd (Results 1 - 7 of 7) sorted by relevance

/frameworks/native/libs/vr/libpdx_uds/
H A Dchannel_manager.cpp24 LocalChannelHandle ChannelManager::CreateHandle(LocalHandle data_fd, argument
27 if (data_fd && pollin_event_fd && pollhup_event_fd) {
29 const int32_t handle = data_fd.Get();
32 ChannelEventReceiver{std::move(data_fd), std::move(pollin_event_fd),
37 "ChannelManager::CreateHandle: Invalid arguments: data_fd=%d "
39 data_fd.Get(), pollin_event_fd.Get(), pollhup_event_fd.Get());
H A Dchannel_parcelable.cpp16 ChannelParcelable::ChannelParcelable(LocalHandle data_fd, argument
19 : data_fd_{std::move(data_fd)},
115 "data_fd=%d, pollin_event_fd=%d, pollhup_event_fd=%d.",
H A Dchannel_event_set.cpp71 ChannelEventReceiver::ChannelEventReceiver(LocalHandle data_fd, argument
82 if (epoll_ctl(epoll_fd.Get(), EPOLL_CTL_ADD, data_fd.Get(), &event) < 0) {
84 ALOGE("ChannelEventSet::ChannelEventSet: Failed to add data_fd: %s",
112 data_fd_ = std::move(data_fd);
H A Dservice_endpoint.cpp52 std::move(channel_info.data_fd),
75 channel_data->data_fd(), channel_data->pollin_event_fd(),
84 Status<ChannelReference> PushChannelHandle(BorrowedHandle data_fd, argument
87 if (!data_fd || !pollin_event_fd || !pollhup_event_fd)
89 ChannelInfo<BorrowedHandle> channel_info{std::move(data_fd),
293 channel_data.data_fd = std::move(channel_fd);
301 channel_fd_to_id_.emplace(channel_data.data_fd.Get(), last_channel_id_);
335 int channel_fd = iter->second.data_fd.Get();
476 handle = channel_data->second.data_fd.Borrow();
629 // with an empty data_fd membe
[all...]
/frameworks/native/libs/vr/libpdx_uds/private/uds/
H A Dchannel_event_set.h41 ChannelEventReceiver(LocalHandle data_fd, LocalHandle pollin_event_fd,
55 BorrowedHandle data_fd() const { return data_fd_.Borrow(); } function in class:android::pdx::uds::ChannelEventReceiver
H A Dservice_endpoint.h112 LocalHandle data_fd; member in struct:android::pdx::uds::Endpoint::ChannelData
H A Dipc_helper.h112 FileHandleType data_fd; member in class:android::pdx::uds::ChannelInfo
117 PDX_SERIALIZABLE_MEMBERS(ChannelInfo, data_fd, pollin_event_fd,

Completed in 86 milliseconds