Searched defs:SendVector (Results 1 - 2 of 2) 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/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 64 milliseconds