Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit2/Platform/CoreIPC/
DHandleMessage.h67 void callMemberFunction(const Arguments0&, Arguments1<R1>& replyArgs, C* object, MF function) in callMemberFunction() argument
69 (object->*function)(replyArgs.argument1); in callMemberFunction()
73 void callMemberFunction(const Arguments0&, Arguments2<R1, R2>& replyArgs, C* object, MF function) in callMemberFunction() argument
75 (object->*function)(replyArgs.argument1, replyArgs.argument2); in callMemberFunction()
85 void callMemberFunction(const Arguments1<P1>& args, Arguments1<R1>& replyArgs, C* object, MF functi… in callMemberFunction() argument
87 (object->*function)(args.argument1, replyArgs.argument1); in callMemberFunction()
91 void callMemberFunction(const Arguments1<P1>& args, Arguments2<R1, R2>& replyArgs, C* object, MF fu… in callMemberFunction() argument
93 (object->*function)(args.argument1, replyArgs.argument1, replyArgs.argument2); in callMemberFunction()
97 void callMemberFunction(const Arguments1<P1>& args, Arguments3<R1, R2, R3>& replyArgs, C* object, M… in callMemberFunction() argument
99 …(object->*function)(args.argument1, replyArgs.argument1, replyArgs.argument2, replyArgs.argument3); in callMemberFunction()
[all …]