Searched defs:data_fd (Results 1 - 6 of 6) sorted by last modified time

/frameworks/native/libs/vr/libpdx_uds/
H A Dchannel_event_set.cpp34 Status<void> ChannelEventSet::AddDataFd(const LocalHandle& data_fd) { argument
38 if (epoll_ctl(epoll_fd_.Get(), EPOLL_CTL_ADD, data_fd.Get(), &event) < 0) {
H A Dchannel_manager.cpp24 LocalChannelHandle ChannelManager::CreateHandle(LocalHandle data_fd, argument
26 if (data_fd && event_fd) {
28 int32_t handle = data_fd.Get();
30 ChannelData{std::move(data_fd), std::move(event_fd)});
H A Dservice_endpoint.cpp52 std::move(channel_info.data_fd), std::move(channel_info.event_fd));
73 channel_info.data_fd.Reset(handle.value());
82 Status<ChannelReference> PushChannelHandle(BorrowedHandle data_fd, argument
84 if (!data_fd || !event_fd)
87 channel_info.data_fd = std::move(data_fd);
291 channel_data.data_fd = std::move(channel_fd);
299 channel_fd_to_id_.emplace(channel_data.data_fd.Get(), last_channel_id_);
333 int channel_fd = iter->second.data_fd.Get();
471 handle = channel_data->second.data_fd
[all...]
/frameworks/native/libs/vr/libpdx_uds/private/uds/
H A Dchannel_manager.h19 LocalChannelHandle CreateHandle(LocalHandle data_fd, LocalHandle event_fd);
21 LocalHandle data_fd; member in struct:android::pdx::uds::ChannelManager::ChannelData
H A Dipc_helper.h111 FileHandleType data_fd; member in class:android::pdx::uds::ChannelInfo
115 PDX_SERIALIZABLE_MEMBERS(ChannelInfo, data_fd, event_fd);
H A Dservice_endpoint.h112 LocalHandle data_fd; member in struct:android::pdx::uds::Endpoint::ChannelData

Completed in 60 milliseconds