Home | History | Annotate | Download | only in src

Lines Matching refs:T2

153 #define TOOLS_RPC_API_METHOD2(Method, T1, T2) \
155 RpcTypeTrait<T2>::ApiType t2) = 0;
157 #define TOOLS_RPC_API_METHOD3(Method, T1, T2, T3) \
159 RpcTypeTrait<T2>::ApiType t2, \
162 #define TOOLS_RPC_API_METHOD4(Method, T1, T2, T3, T4) \
164 RpcTypeTrait<T2>::ApiType t2, \
168 #define TOOLS_RPC_API_METHOD5(Method, T1, T2, T3, T4, T5) \
170 RpcTypeTrait<T2>::ApiType t2, \
191 #define TOOLS_RPC_STUB_METHOD2(Method, T1, T2) \
193 RpcTypeTrait<T2>::ApiType t2) { \
196 args[1] = RpcTypeTrait<T2>::toString(t2); \
200 #define TOOLS_RPC_STUB_METHOD3(Method, T1, T2, T3) \
202 RpcTypeTrait<T2>::ApiType t2, \
206 args[1] = RpcTypeTrait<T2>::toString(t2); \
211 #define TOOLS_RPC_STUB_METHOD4(Method, T1, T2, T3, T4) \
213 RpcTypeTrait<T2>::ApiType t2, \
218 args[1] = RpcTypeTrait<T2>::toString(t2); \
224 #define TOOLS_RPC_STUB_METHOD5(Method, T1, T2, T3, T4, T5) \
226 RpcTypeTrait<T2>::ApiType t2, \
232 args[1] = RpcTypeTrait<T2>::toString(t2); \
254 #define TOOLS_RPC_DISPATCH2(Method, T1, T2) \
258 RpcTypeTrait<T2>::parse(args[1]) \
263 #define TOOLS_RPC_DISPATCH3(Method, T1, T2, T3) \
267 RpcTypeTrait<T2>::parse(args[1]), \
273 #define TOOLS_RPC_DISPATCH4(Method, T1, T2, T3, T4) \
277 RpcTypeTrait<T2>::parse(args[1]), \
284 #define TOOLS_RPC_DISPATCH5(Method, T1, T2, T3, T4, T5) \
288 RpcTypeTrait<T2>::parse(args[1]), \