Searched defs:Send (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dclient.h212 Status<T> Send(int opcode) { function in class:android::pdx::Client::final
217 Status<T> Send(int opcode, const void* send_buffer, size_t send_length, function in class:android::pdx::Client::final
/frameworks/native/services/vr/virtual_touchpad/
H A DEvdevInjector.cpp230 int EvdevInjector::Send(uint16_t type, uint16_t code, int32_t value) { function in class:android::dvr::EvdevInjector
231 ALOGV("Send(0x%" PRIX16 ", 0x%" PRIX16 ", 0x%" PRIX32 ")", type, code, value);
248 int EvdevInjector::SendSynReport() { return Send(EV_SYN, SYN_REPORT, 0); }
251 return Send(EV_KEY, code, value);
255 return Send(EV_ABS, code, value);
259 return Send(EV_REL, code, value);
/frameworks/native/libs/vr/libpdx_uds/
H A Dipc_helper.cpp26 // Default implementations of Send/Receive interfaces to use standard socket
30 ssize_t Send(int socket_fd, const void* data, size_t size,
60 RETRY_EINTR(sender->Send(socket_fd.Get(), ptr, size, MSG_NOSIGNAL));
176 Status<void> SendPayload::Send(const BorrowedHandle& socket_fd) { function in class:android::pdx::uds::SendPayload
177 return Send(socket_fd, nullptr);
180 Status<void> SendPayload::Send(const BorrowedHandle& socket_fd, function in class:android::pdx::uds::SendPayload
185 "SendPayload::Send: Trying to send too many file descriptors (%zu), "

Completed in 191 milliseconds