/external/chromium_org/ipc/ |
ipc_message_utils_unittest.cc | 20 Message nested_msg(nested_routing, nested_type, nested_priority); 21 nested_msg.set_sync(); 22 ParamTraits<int>::Write(&nested_msg, nested_content); 29 ParamTraits<Message>::Write(&outer_msg, nested_msg); 37 EXPECT_EQ(nested_msg.routing_id(), result_msg.routing_id()); 38 EXPECT_EQ(nested_msg.type(), result_msg.type()); 39 EXPECT_EQ(nested_msg.priority(), result_msg.priority()); 40 EXPECT_EQ(nested_msg.flags(), result_msg.flags()); 43 PickleIterator nested_iter(nested_msg); 45 ASSERT_TRUE(ParamTraits<int>::Read(&nested_msg, &nested_iter [all...] |
/external/chromium_org/ppapi/proxy/ |
plugin_message_filter.cc | 60 const IPC::Message& nested_msg) { 61 DispatchResourceReply(reply_params, nested_msg); 84 const IPC::Message& nested_msg) { 87 nested_msg); 90 DispatchResourceReply(reply_params, nested_msg); 94 base::Bind(&DispatchResourceReply, reply_params, nested_msg)); 101 const IPC::Message& nested_msg) { 111 resource->OnReplyReceived(reply_params, nested_msg);
|
plugin_message_filter.h | 55 const IPC::Message& nested_msg); 60 const IPC::Message& nested_msg); 66 const IPC::Message& nested_msg);
|
resource_message_test_sink.h | 40 IPC::Message* nested_msg) const; 46 IPC::Message* nested_msg);
|
resource_reply_thread_registrar.cc | 61 const IPC::Message& nested_msg) { 75 if (io_thread_message_types_.count(nested_msg.type()) != 0)
|
nacl_message_scanner_unittest.cc | 104 IPC::Message nested_msg; local 107 *new_msg_ptr, &call_params, &nested_msg) && 109 nested_msg, &file_growth)); 197 IPC::Message nested_msg; local 201 *new_msg_ptr, &call_params, &nested_msg) && 203 nested_msg, &amount, &new_file_growths)); 255 IPC::Message nested_msg; local 258 *new_msg_ptr, &call_params, &nested_msg) && 260 nested_msg, &length));
|
resource_message_test_sink.cc | 72 IPC::Message* nested_msg) const { 80 *nested_msg = matching_messages[0].second; 87 IPC::Message* nested_msg) { 95 *nested_msg = matching_messages[0].second;
|
resource_reply_thread_registrar.h | 59 const IPC::Message& nested_msg);
|
plugin_resource.cc | 123 const IPC::Message& nested_msg) { 131 nested_msg)); 134 new PpapiHostMsg_ResourceCall(call_params, nested_msg));
|
nacl_message_scanner.cc | 353 IPC::Message nested_msg; local 355 untrusted_msg, ¶ms, &nested_msg)) 358 switch (nested_msg.type()) { 367 nested_msg, &file_growth)) 393 nested_msg, &length)) 417 nested_msg, &amount, &file_growths)) 450 nested_msg, &resource))
|
plugin_resource.h | 162 // destination with |nested_msg| and |call_params|. 165 const IPC::Message& nested_msg);
|
/external/chromium_org/ppapi/host/ |
ppapi_host.cc | 128 const IPC::Message& nested_msg) { 133 this, params, instance, nested_msg).Pass(); 169 const IPC::Message& nested_msg) { 171 "Class", IPC_MESSAGE_ID_CLASS(nested_msg.type()), 172 "Line", IPC_MESSAGE_ID_LINE(nested_msg.type())); 174 HandleResourceCall(params, nested_msg, &context); 180 const IPC::Message& nested_msg) { 182 "Class", IPC_MESSAGE_ID_CLASS(nested_msg.type()), 183 "Line", IPC_MESSAGE_ID_LINE(nested_msg.type())); 185 HandleResourceCall(params, nested_msg, &context) [all...] |
ppapi_host.h | 72 // Create a ResourceHost with the given |nested_msg|. 76 const IPC::Message& nested_msg); 99 const IPC::Message& nested_msg, 104 const IPC::Message& nested_msg); 108 const IPC::Message& nested_msg); 111 const IPC::Message& nested_msg, 115 const IPC::Message& nested_msg);
|
/external/chromium_org/content/browser/renderer_host/pepper/ |
pepper_renderer_connection.cc | 168 const IPC::Message& nested_msg = nested_msgs[i]; local 171 if (nested_msg.type() == PpapiHostMsg_FileRef_CreateForRawFS::ID) { 177 nested_msg, &external_path)) { 181 } else if (nested_msg.type() == 188 nested_msg, &root_url, &file_system_type)) { 211 params, instance, nested_msg);
|
/external/chromium_org/content/renderer/pepper/ |
pepper_in_process_router.cc | 74 IPC::Message nested_msg; local 79 msg, &reply_params, &nested_msg)) { 86 msg, &reply_params, &nested_msg)) { 99 resource->OnReplyReceived(reply_params, nested_msg);
|