Home
last modified time | relevance | path

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

/frameworks/native/libs/vr/libpdx/private/pdx/
Dclient.h213 return SendVector<T>(opcode, nullptr, 0, nullptr, 0); in Send()
223 return SendVector<T>(opcode, send ? &send_vector : nullptr, send ? 1 : 0, in Send()
228 Status<T> SendVector(int opcode, const iovec* send_vector, size_t send_count, in SendVector() function
237 Status<T> SendVector(int opcode, const iovec (&send_vector)[send_count], in SendVector() function
239 return SendVector<T>(opcode, send_vector, send_count, receive_vector, in SendVector()
244 Status<T> SendVector(int opcode, const iovec (&send_vector)[send_count], in SendVector() function
246 return SendVector<T>(opcode, send_vector, send_count, nullptr, 0); in SendVector()
250 Status<T> SendVector(int opcode, std::nullptr_t, in SendVector() function
252 return SendVector<T>(opcode, nullptr, 0, receive_vector, receive_count); in SendVector()
/frameworks/native/libs/vr/libpdx/
Dclient_tests.cpp483 TEST_F(ClientTransactionTest, SendVector) { in TEST_F() argument
493 EXPECT_TRUE(transaction_.SendVector<void>(1, nullptr, 0, nullptr, 0)); in TEST_F()
497 EXPECT_TRUE(transaction_.SendVector<void>(2, send, 3, recv, 4)); in TEST_F()
501 EXPECT_TRUE(transaction_.SendVector<void>(3, send, nullptr)); in TEST_F()
505 EXPECT_TRUE(transaction_.SendVector<void>(4, nullptr, recv)); in TEST_F()
509 EXPECT_TRUE(transaction_.SendVector<void>(5, send, recv)); in TEST_F()
/frameworks/native/libs/vr/libvrsensor/
Dsensor_client.cpp46 auto status = trans.SendVector<int>(DVR_SENSOR_POLL, nullptr, rvec); in Poll()
Dpose_client.cpp226 trans.SendVector<int>(DVR_POSE_NOTIFY_VSYNC, data, nullptr); in NotifyVsync()
/frameworks/native/libs/vr/libpdx_uds/
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) { in SendVector() function in __anon586972210111::TestClient
251 InvokeRemoteMethod<TestInterface::SendVector>(v); in SendVector()
377 case TestInterface::SendVector::Opcode: in HandleMessage()
378 DispatchRemoteMethod<TestInterface::SendVector>( in HandleMessage()
633 const std::string string_result = client->SendVector(ttv); in TEST_F()