Home
last modified time | relevance | path

Searched refs:RemoteMethodType (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
Dremote_method.h27 template <typename RemoteMethodType>
29 bool, RemoteMethodType::Traits::Arity == 1 &&
30 std::is_same<typename RemoteMethodType::Traits::template Arg<0>,
34 template <typename RemoteMethodType>
36 typename std::enable_if<IsVoidMethod<RemoteMethodType>::value>::type;
39 template <typename RemoteMethodType>
41 typename std::enable_if<!IsVoidMethod<RemoteMethodType>::value>::type;
47 template <typename RemoteMethodType>
49 template <typename RemoteMethodType>
135 template <typename RemoteMethodType, typename Return>
[all …]
Dremote_method_type.h18 struct RemoteMethodType { struct
63 using name = ::android::pdx::rpc::RemoteMethodType<opcode, __VA_ARGS__>
/frameworks/native/libs/vr/libpdx/private/pdx/
Dclient.h80 template <typename RemoteMethodType, typename... Args>
81 Status<typename RemoteMethodType::Return> InvokeRemoteMethod(Args&&... args);
83 template <typename RemoteMethodType, typename ReturnType, typename... Args>