Searched defs:reply_params (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/ppapi/proxy/
H A Ddispatch_reply_message.h92 const ResourceMessageReplyParams& reply_params,
103 DispatchResourceReply(obj, method, reply_params, msg_params);
113 DispatchResourceReply(obj, method, reply_params,
120 // arguments, so just call the |method| with the |reply_params|.
125 const ResourceMessageReplyParams& reply_params,
129 (obj->*method)(reply_params);
89 DispatchResourceReplyOrDefaultParams( ObjT* obj, Method method, const ResourceMessageReplyParams& reply_params, const IPC::Message& msg) argument
122 DispatchResourceReplyOrDefaultParams( base::Callback<void(const ResourceMessageReplyParams&)>* obj, Method method, const ResourceMessageReplyParams& reply_params, const IPC::Message& msg) argument
H A Dplugin_message_filter.cc58 const ResourceMessageReplyParams& reply_params,
60 DispatchResourceReply(reply_params, nested_msg);
82 const ResourceMessageReplyParams& reply_params,
86 reply_params.pp_resource(), reply_params.sequence());
90 base::Bind(&DispatchResourceReply, reply_params, nested_msg));
95 const ResourceMessageReplyParams& reply_params,
99 reply_params.pp_resource());
101 DVLOG_IF(1, reply_params.sequence() != 0)
106 resource->OnReplyReceived(reply_params, nested_ms
57 DispatchResourceReplyForTest( const ResourceMessageReplyParams& reply_params, const IPC::Message& nested_msg) argument
81 OnMsgResourceReply( const ResourceMessageReplyParams& reply_params, const IPC::Message& nested_msg) argument
94 DispatchResourceReply( const ResourceMessageReplyParams& reply_params, const IPC::Message& nested_msg) argument
[all...]
H A Dplugin_resource.cc142 ResourceMessageReplyParams* reply_params) {
149 params, msg, reply_params, reply));
151 return reply_params->result();
138 GenericSyncCall( Destination dest, const IPC::Message& msg, IPC::Message* reply, ResourceMessageReplyParams* reply_params) argument
H A Dvideo_source_resource.cc86 const ResourceMessageReplyParams& reply_params) {
88 int32_t result = reply_params.result();
97 const ResourceMessageReplyParams& reply_params,
103 int32_t result = reply_params.result();
109 if (!reply_params.TakeSharedMemoryHandleAtIndex(0, &handle))
85 OnPluginMsgOpenComplete( const ResourceMessageReplyParams& reply_params) argument
95 OnPluginMsgGetFrameComplete( PP_VideoFrame_Private* frame, const ResourceMessageReplyParams& reply_params, const HostResource& image_data, const PP_ImageDataDesc& image_desc, PP_TimeTicks timestamp) argument
H A Dflash_file_resource.cc147 ResourceMessageReplyParams reply_params; local
149 PpapiHostMsg_FlashFile_CreateTemporaryFile(), &unused, &reply_params);
154 if (!reply_params.TakeFileHandleAtIndex(0, &transit_file))
188 ResourceMessageReplyParams reply_params; local
191 &reply_params);
196 if (!reply_params.TakeFileHandleAtIndex(0, &transit_file))
H A Dplugin_resource.h151 ResourceMessageReplyParams* reply_params);
221 ResourceMessageReplyParams reply_params; local
222 return GenericSyncCall(dest, msg, &reply, &reply_params);
229 ResourceMessageReplyParams reply_params; local
230 int32_t result = GenericSyncCall(dest, msg, &reply, &reply_params);
241 ResourceMessageReplyParams reply_params; local
242 int32_t result = GenericSyncCall(dest, msg, &reply, &reply_params);
253 ResourceMessageReplyParams reply_params; local
254 int32_t result = GenericSyncCall(dest, msg, &reply, &reply_params);
265 ResourceMessageReplyParams reply_params; local
277 ResourceMessageReplyParams reply_params; local
[all...]
H A Dpdf_resource.cc162 ResourceMessageReplyParams reply_params; local
165 &reply_params);
182 if (!reply_params.TakeSharedMemoryHandleAtIndex(0, &handle))
/external/chromium_org/content/browser/renderer_host/pepper/
H A Dpepper_printing_host_unittest.cc99 ppapi::proxy::ResourceMessageReplyParams reply_params; local
102 PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply::ID, &reply_params,
106 EXPECT_EQ(call_params.sequence(), reply_params.sequence());
107 EXPECT_EQ(PP_OK, reply_params.result());
H A Dpepper_gamepad_host_unittest.cc174 ppapi::proxy::ResourceMessageReplyParams reply_params; local
177 PpapiPluginMsg_Gamepad_SendMemory::ID, &reply_params, &reply_msg));
181 EXPECT_TRUE(reply_params.TakeSharedMemoryHandleAtIndex(0, &reply_handle));
/external/chromium_org/content/renderer/pepper/
H A Dpepper_file_chooser_host_unittest.cc115 ppapi::proxy::ResourceMessageReplyParams reply_params; local
118 PpapiPluginMsg_FileChooser_ShowReply::ID, &reply_params, &reply_msg));
121 EXPECT_EQ(call_params.sequence(), reply_params.sequence());
122 EXPECT_EQ(PP_OK, reply_params.result());
H A Dpepper_in_process_router.cc79 ppapi::proxy::ResourceMessageReplyParams reply_params; local
84 if (!UnpackMessage<PpapiPluginMsg_ResourceReply>(msg, &reply_params,
91 if (!UnpackMessage<PpapiHostMsg_InProcessResourceReply>(msg, &reply_params,
101 reply_params.pp_resource());
105 resource->OnReplyReceived(reply_params, nested_msg);
H A Dpepper_device_enumeration_host_helper_unittest.cc102 ppapi::proxy::ResourceMessageReplyParams reply_params; local
106 &reply_params, &reply_msg));
109 EXPECT_EQ(PP_OK, reply_params.result());
162 ppapi::proxy::ResourceMessageReplyParams reply_params; local
166 &reply_params, &reply_msg));
168 EXPECT_EQ(call_params.sequence(), reply_params.sequence());
169 EXPECT_EQ(PP_OK, reply_params.result());
/external/chromium_org/ipc/
H A Dipc_message_utils.h759 inline void LogReplyParamsToMessage(const ReplyParamType& reply_params, argument
763 LogParam(reply_params, &output_params);
783 inline void LogReplyParamsToMessage(const ReplyParamType& reply_params, argument
824 typename TupleTypes<ReplyParam>::ValueTuple reply_params; local
825 DispatchToMethod(obj, func, send_params, &reply_params);
826 WriteParam(reply, reply_params);
827 LogReplyParamsToMessage(reply_params, msg);

Completed in 171 milliseconds