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

/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dclient.h214 return SendVector<T>(opcode, nullptr, 0, nullptr, 0);
224 return SendVector<T>(opcode, send ? &send_vector : nullptr, send ? 1 : 0,
229 Status<T> SendVector(int opcode, const iovec* send_vector, size_t send_count, function in class:android::pdx::Client::final
238 Status<T> SendVector(int opcode, const iovec (&send_vector)[send_count], function in class:android::pdx::Client::final
240 return SendVector<T>(opcode, send_vector, send_count, receive_vector,
245 Status<T> SendVector(int opcode, const iovec (&send_vector)[send_count], function in class:android::pdx::Client::final
247 return SendVector<T>(opcode, send_vector, send_count, nullptr, 0);
251 Status<T> SendVector(int opcode, std::nullptr_t, function in class:android::pdx::Client::final
253 return SendVector<T>(opcode, nullptr, 0, receive_vector, receive_count);
/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:__anon1748::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 50 milliseconds