Searched refs:SendVector (Results 1 - 5 of 5) sorted by relevance

/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dclient.h213 return SendVector<T>(opcode, nullptr, 0, nullptr, 0);
223 return SendVector<T>(opcode, send ? &send_vector : nullptr, send ? 1 : 0,
228 Status<T> SendVector(int opcode, const iovec* send_vector, size_t send_count, function in class:android::pdx::Client::final
237 Status<T> SendVector(int opcode, const iovec (&send_vector)[send_count], function in class:android::pdx::Client::final
239 return SendVector<T>(opcode, send_vector, send_count, receive_vector,
244 Status<T> SendVector(int opcode, const iovec (&send_vector)[send_count], function in class:android::pdx::Client::final
246 return SendVector<T>(opcode, send_vector, send_count, nullptr, 0);
250 Status<T> SendVector(int opcode, std::nullptr_t, function in class:android::pdx::Client::final
252 return SendVector<T>(opcode, nullptr, 0, receive_vector, receive_count);
/frameworks/native/libs/vr/libvrsensor/
H A Dsensor_client.cpp46 auto status = trans.SendVector<int>(DVR_SENSOR_POLL, nullptr, rvec);
H A Dpose_client.cpp226 trans.SendVector<int>(DVR_POSE_NOTIFY_VSYNC, data, nullptr);
/frameworks/native/libs/vr/libpdx/
H A Dclient_tests.cpp483 TEST_F(ClientTransactionTest, SendVector) {
493 EXPECT_TRUE(transaction_.SendVector<void>(1, nullptr, 0, nullptr, 0));
497 EXPECT_TRUE(transaction_.SendVector<void>(2, send, 3, recv, 4));
501 EXPECT_TRUE(transaction_.SendVector<void>(3, send, nullptr));
505 EXPECT_TRUE(transaction_.SendVector<void>(4, nullptr, recv));
509 EXPECT_TRUE(transaction_.SendVector<void>(5, send, recv));
/frameworks/native/libs/vr/libpdx_uds/
H A Dremote_method_tests.cpp165 PDX_REMOTE_METHOD(SendVector, kOpSendVector,
183 SendTestType, SendVector, Rot13, NoArgs, SendFile, GetFile,
249 std::string SendVector(const std::vector<TestType>& v) { function in class:__anon1773::TestClient
251 InvokeRemoteMethod<TestInterface::SendVector>(v);
377 case TestInterface::SendVector::Opcode:
378 DispatchRemoteMethod<TestInterface::SendVector>(
633 const std::string string_result = client->SendVector(ttv);

Completed in 76 milliseconds