Searched defs:PushFileHandle (Results 1 - 5 of 5) sorted by relevance

/frameworks/native/libs/vr/libpdx/
H A Dclient.cpp227 Status<FileReference> Transaction::PushFileHandle(const LocalHandle& handle) { function in class:android::pdx::Transaction
229 return client_.GetChannel()->PushFileHandle(state_, handle);
233 Status<FileReference> Transaction::PushFileHandle( function in class:android::pdx::Transaction
236 return client_.GetChannel()->PushFileHandle(state_, handle);
240 Status<FileReference> Transaction::PushFileHandle(const RemoteHandle& handle) { function in class:android::pdx::Transaction
H A Dservice.cpp157 Status<FileReference> Message::PushFileHandle(const LocalHandle& handle) { function in class:android::pdx::Message
158 PDX_TRACE_NAME("Message::PushFileHandle");
160 return svc->endpoint()->PushFileHandle(this, handle);
166 Status<FileReference> Message::PushFileHandle(const BorrowedHandle& handle) { function in class:android::pdx::Message
167 PDX_TRACE_NAME("Message::PushFileHandle");
169 return svc->endpoint()->PushFileHandle(this, handle);
175 Status<FileReference> Message::PushFileHandle(const RemoteHandle& handle) { function in class:android::pdx::Message
176 PDX_TRACE_NAME("Message::PushFileHandle");
178 return svc->endpoint()->PushFileHandle(this, handle);
/frameworks/native/libs/vr/libpdx_uds/
H A Dclient_channel.cpp43 FileReference PushFileHandle(BorrowedHandle handle) { function in struct:android::pdx::uds::__anon1765::TransactionState
254 FileReference ClientChannel::PushFileHandle(void* transaction_state, function in class:android::pdx::uds::ClientChannel
257 return state->PushFileHandle(handle.Borrow());
260 FileReference ClientChannel::PushFileHandle(void* transaction_state, function in class:android::pdx::uds::ClientChannel
263 return state->PushFileHandle(handle.Duplicate());
H A Dipc_helper.cpp227 Status<FileReference> SendPayload::PushFileHandle(const LocalHandle& handle) { function in class:android::pdx::uds::SendPayload
237 Status<FileReference> SendPayload::PushFileHandle( function in class:android::pdx::uds::SendPayload
248 Status<FileReference> SendPayload::PushFileHandle(const RemoteHandle& handle) { function in class:android::pdx::uds::SendPayload
H A Dservice_endpoint.cpp59 Status<FileReference> PushFileHandle(BorrowedHandle handle) { function in struct:__anon1775::MessageState
620 auto push_status = state->PushFileHandle(GetChannelEventFd(channel_id));
645 auto ref = state->PushFileHandle(BorrowedHandle{static_cast<int>(push_fd)});
686 Status<FileReference> Endpoint::PushFileHandle(Message* message, function in class:android::pdx::uds::Endpoint
689 return state->PushFileHandle(handle.Borrow());
692 Status<FileReference> Endpoint::PushFileHandle(Message* message, function in class:android::pdx::uds::Endpoint
695 return state->PushFileHandle(handle.Duplicate());
698 Status<FileReference> Endpoint::PushFileHandle(Message* /*message*/, function in class:android::pdx::uds::Endpoint

Completed in 643 milliseconds