Home
last modified time | relevance | path

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

/external/chromium_org/ipc/
Dipc_message_macros.h225 #define IPC_MESSAGE_CONTROL0(msg_class) \ argument
226 IPC_MESSAGE_DECL(EMPTY, CONTROL, msg_class, 0, 0, (), ())
228 #define IPC_MESSAGE_CONTROL1(msg_class, type1) \ argument
229 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 1, 0, (type1), ())
231 #define IPC_MESSAGE_CONTROL2(msg_class, type1, type2) \ argument
232 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 2, 0, (type1, type2), ())
234 #define IPC_MESSAGE_CONTROL3(msg_class, type1, type2, type3) \ argument
235 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 3, 0, (type1, type2, type3), ())
237 #define IPC_MESSAGE_CONTROL4(msg_class, type1, type2, type3, type4) \ argument
238 IPC_MESSAGE_DECL(ASYNC, CONTROL, msg_class, 4, 0, (type1, type2, type3, type4), ())
[all …]
Dipc_message_null_macros.h27 #define IPC_MESSAGE_DECL(sync, kind, msg_class, \ argument
/external/chromium_org/ppapi/host/
Ddispatch_host_message.h67 #define PPAPI_DISPATCH_HOST_RESOURCE_CALL(msg_class, member_func) \ argument
68 case msg_class::ID: { \
70 msg_class::Schema::Param p; \
71 if (msg_class::Read(&ipc_message__, &p)) { \
80 #define PPAPI_DISPATCH_HOST_RESOURCE_CALL_0(msg_class, member_func) \ argument
81 case msg_class::ID: { \
/external/chromium_org/ppapi/proxy/
Ddispatch_reply_message.h145 #define PPAPI_DISPATCH_PLUGIN_RESOURCE_CALL(msg_class, member_func) \ argument
146 case msg_class::ID: { \
147 msg_class::Schema::Param p; \
148 if (msg_class::Read(&ipc_message__, &p)) { \
159 #define PPAPI_DISPATCH_PLUGIN_RESOURCE_CALL_0(msg_class, member_func) \ argument
160 case msg_class::ID: { \