Searched refs:Send (Results 1 - 15 of 15) sorted by relevance

/frameworks/rs/script_api/
H A Drs_io.spec21 <li>Send information to the Java client, and</li>
23 <li>Send the processed allocation or receive the next allocation to process.</li></ul>
45 summary: Send new content to the queue
47 Send the contents of the Allocation to the queue.
59 summary: Send a message to the client, non-blocking
82 summary: Send a message to the client, blocking
/frameworks/native/libs/vr/libpdx_uds/
H A Dipc_helper_tests.cpp34 MOCK_METHOD4(Send, ssize_t(int socket_fd, const void* data, size_t size,
51 ON_CALL(sender_, Send(_, _, _, _))
96 ON_CALL(sender_, Send(_, _, _, _))
123 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL))
131 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL))
134 Send(kSocketFd, IntToConstPtr(kPtr + 20), 80, MSG_NOSIGNAL))
137 Send(kSocketFd, IntToConstPtr(kPtr + 60), 40, MSG_NOSIGNAL))
145 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL))
154 EXPECT_CALL(sender_, Send(kSocketFd, IntToConstPtr(kPtr), 100, MSG_NOSIGNAL))
163 EXPECT_CALL(sender_, Send(kSocketF
[all...]
H A Dservice_framework_tests.cpp266 return ReturnStatusOrError(trans.Send<int>(TEST_OP_GET_SERVICE_ID));
272 return ReturnStatusOrError(trans.Send<int>(TEST_OP_SET_TEST_CHANNEL));
290 return ReturnStatusOrError(trans.Send<int>(TEST_OP_GET_THIS_CHANNEL_ID));
296 return ReturnStatusOrError(trans.Send<int>(TEST_OP_GET_TEST_CHANNEL_ID));
304 return ReturnStatusOrError(trans.Send<int>(TEST_OP_CHECK_CHANNEL_ID, &ref,
313 return ReturnStatusOrError(trans.Send<int>(TEST_OP_CHECK_CHANNEL_OBJECT,
323 trans.Send<int>(TEST_OP_CHECK_CHANNEL_FROM_OTHER_SERVICE, &ref,
330 auto status = trans.Send<LocalChannelHandle>(TEST_OP_GET_NEW_CHANNEL);
340 auto status = trans.Send<LocalChannelHandle>(
351 return ReturnStatusOrError(trans.Send<in
[all...]
H A Dipc_helper.cpp23 // Default implementations of Send/Receive interfaces to use standard socket
27 ssize_t Send(int socket_fd, const void* data, size_t size,
57 RETRY_EINTR(sender->Send(socket_fd.Get(), ptr, size, MSG_NOSIGNAL));
173 Status<void> SendPayload::Send(const BorrowedHandle& socket_fd) { function in class:android::pdx::uds::SendPayload
174 return Send(socket_fd, nullptr);
177 Status<void> SendPayload::Send(const BorrowedHandle& socket_fd, function in class:android::pdx::uds::SendPayload
/frameworks/native/libs/vr/libvrsensor/
H A Dsensor_client.cpp24 auto status = trans.Send<int>(DVR_SENSOR_START, &sensor_type_,
33 auto status = trans.Send<int>(DVR_SENSOR_STOP);
H A Dpose_client.cpp40 trans.Send<int>(DVR_POSE_POLL, nullptr, 0, state, sizeof(*state));
84 Status<int> status = trans.Send<int>(DVR_POSE_LOG_CONTROLLER, &enable,
97 Status<int> status = trans.Send<int>(DVR_POSE_FREEZE, &frozen_state,
108 trans.Send<int>(DVR_POSE_SET_MODE, &mode, sizeof(mode), nullptr, 0);
119 trans.Send<int>(DVR_POSE_GET_MODE, nullptr, 0, &mode, sizeof(mode));
137 trans.Send<LocalChannelHandle>(DVR_POSE_GET_RING_BUFFER);
181 Status<LocalChannelHandle> status = trans.Send<LocalChannelHandle>(
/frameworks/native/libs/vr/libpdx_uds/private/uds/
H A Dipc_helper.h20 virtual ssize_t Send(int socket_fd, const void* data, size_t size,
61 Status<void> Send(const BorrowedHandle& socket_fd);
62 Status<void> Send(const BorrowedHandle& socket_fd, const ucred* cred);
162 return payload.Send(socket_fd);
170 return payload.Send(socket_fd, &request.cred);
/frameworks/native/libs/vr/libpdx_default_transport/private/pdx/default_transport/
H A Dservice_utility.h20 transaction.Send<int>(opcodes::REPORT_SYSPROP_CHANGE));
/frameworks/native/services/vr/virtual_touchpad/
H A DEvdevInjector.cpp211 int EvdevInjector::Send(uint16_t type, uint16_t code, int32_t value) { function in class:android::dvr::EvdevInjector
212 ALOGV("Send(0x%" PRIX16 ", 0x%" PRIX16 ", 0x%" PRIX32 ")", type, code, value);
229 int EvdevInjector::SendSynReport() { return Send(EV_SYN, SYN_REPORT, 0); }
232 return Send(EV_KEY, code, value);
236 return Send(EV_ABS, code, value);
H A DEvdevInjector.h32 ERROR_SEQUENCING = -5, // Configure/Send out of order.
93 // Send various events.
95 int Send(uint16_t type, uint16_t code, int32_t value);
/frameworks/native/libs/vr/libpdx/
H A Dclient_tests.cpp423 EXPECT_TRUE(transaction_.Send<void>(1));
427 EXPECT_TRUE(transaction_.Send<LocalHandle>(2));
431 EXPECT_TRUE(transaction_.Send<LocalChannelHandle>(3));
440 EXPECT_TRUE(transaction_.Send<void>(1));
455 EXPECT_TRUE(transaction_.Send<void>(1, nullptr, 0, nullptr, 0));
460 EXPECT_TRUE(transaction_.Send<void>(2, kSendBuffer, kSendSize, nullptr, 0));
464 EXPECT_TRUE(transaction_.Send<void>(3, kSendBuffer, 0, nullptr, 0));
470 transaction_.Send<void>(4, nullptr, 0, kReceiveBuffer, kReceiveSize));
474 EXPECT_TRUE(transaction_.Send<void>(5, nullptr, 0, kReceiveBuffer, 0));
479 EXPECT_TRUE(transaction_.Send<voi
[all...]
/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/libs/vr/libpdx_default_transport/
H A Dservicetool.cpp56 auto status = trans.Send<void>(android::pdx::opcodes::REPORT_SYSPROP_CHANGE,
67 auto status = trans.Send<int>(android::pdx::opcodes::DUMP_STATE, nullptr, 0,
H A Dpdx_benchmarks.cpp414 return ReturnStatusOrError(transaction.Send<int>(BenchmarkOps::Nop));
423 transaction.Send<int>(BenchmarkOps::Write, buffer, length, nullptr, 0));
433 transaction.Send<int>(BenchmarkOps::Read, nullptr, 0, buffer, length));
446 transaction.Send<int>(BenchmarkOps::Echo, send_buffer, send_length,
489 return ReturnStatusOrError(transaction.Send<int>(BenchmarkOps::Echo));
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dremote_method.h54 // can be obtained directly from Transaction::Send<T>() without deserializing
342 return trans.Send<R>(Opcode, payload.Data(), payload.Size(), nullptr, 0);
359 trans.Send<void>(Opcode, send_payload.Data(), send_payload.Size(),
398 auto status = trans.Send<R>(Opcode, send_payload.Data(),
422 trans.Send<void>(Opcode, send_payload.Data(), send_payload.Size(),

Completed in 2454 milliseconds