/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/ |
internal_utils.cc | 9 PP_Module global_pp_module = 0; 19 void set_pp_module(PP_Module module) { global_pp_module = module; } 21 PP_Module pp_module() { return global_pp_module; } function
|
internal_utils.h | 13 #include "ppapi/c/pp_module.h" 20 void set_pp_module(PP_Module module); 22 PP_Module pp_module();
|
test_interface.h | 52 #include "ppapi/c/pp_module.h" 164 const PP_Module kInvalidModule = 0; 178 PP_Module pp_module();
|
/external/chromium_org/ppapi/cpp/ |
module.h | 12 #include "ppapi/c/pp_module.h" 52 /// The pp_module() function returns the internal module handle. 54 /// @return A <code>PP_Module</code> internal module handle. 55 PP_Module pp_module() const { return pp_module_; } function in class:pp::Module 123 /// @param[in] mod A <code>PP_Module</code>. 129 bool InternalInit(PP_Module mod, 160 PP_Module pp_module_;
|
var.cc | 49 return get_interface<PPB_Var_1_0>()->VarFromUtf8(Module::Get()->pp_module(),
|
/external/chromium_org/ppapi/cpp/private/ |
net_address_private.cc | 83 module->pp_module(), 88 module->pp_module(), 93 module->pp_module(),
|
flash.cc | 199 module->pp_module())); 204 flash_12_combined_interface.GetCommandLineArgs(module->pp_module()));
|
/external/chromium_org/ppapi/proxy/ |
host_dispatcher.cc | 25 typedef std::map<PP_Module, HostDispatcher*> ModuleToDispatcherMap; 28 PP_Bool ReserveInstanceID(PP_Module module, PP_Instance instance) { 62 HostDispatcher::HostDispatcher(PP_Module module, 152 CHECK(!PP_ToBool(ppb_proxy()->IsInModuleDestructor(pp_module()))); 214 ppb_proxy_->PluginCrashed(pp_module()); 267 dispatcher_->ppb_proxy()->AddRefModule(dispatcher_->pp_module()); 273 dispatcher_->ppb_proxy()->ReleaseModule(dispatcher_->pp_module());
|
host_dispatcher.h | 51 HostDispatcher(PP_Module module, 73 // Returns the host's notion of our PP_Module. This will be different than 74 // the plugin's notion of its PP_Module because the plugin process may be 79 PP_Module pp_module() const { return pp_module_; } function in class:ppapi::proxy::HostDispatcher 117 PP_Module pp_module_;
|
ppapi_proxy_test.h | 48 PP_Module pp_module() const { return pp_module_; } function in class:ppapi::proxy::ProxyTestHarnessBase 86 PP_Module pp_module_; 324 PP_Module pp_module() const { return host_.pp_module(); } function in class:ppapi::proxy::TwoWayTest
|
ppb_var_unittest.cc | 97 CreateVarThreadDelegate(PP_Module pp_module, const std::string* strings_in, 100 : pp_module_(pp_module), strings_in_(strings_in), vars_out_(vars_out), 113 PP_Module pp_module_; 180 CreateVarThreadDelegate(pp_module(),
|
ppapi_proxy_test.cc | 27 void PluginCrashed(PP_Module module) { 37 void SetReserveInstanceIDCallback(PP_Module module, 38 PP_Bool (*is_seen)(PP_Module, PP_Instance)) { 43 void AddRefModule(PP_Module module) {} 44 void ReleaseModule(PP_Module module) {} 45 PP_Bool IsInModuleDestructor(PP_Module module) { return PP_FALSE; } 438 pp_module(), 457 pp_module(),
|
/external/chromium_org/content/renderer/pepper/ |
host_dispatcher_wrapper.cc | 49 module_->pp_module(), local_get_interface, filter, permissions_));
|
host_globals.cc | 125 PP_Module HostGlobals::GetModuleForInstance(PP_Instance instance) { 129 return inst->module()->pp_module(); 155 void HostGlobals::BroadcastLogWithSource(PP_Module pp_module, 163 PluginModule* module = GetModule(pp_module); 188 PP_Module HostGlobals::AddModule(PluginModule* module) { 197 PP_Module new_module; 199 new_module = MakeTypedId(static_cast<PP_Module>(base::RandUint64()), 207 void HostGlobals::ModuleDeleted(PP_Module module) { 209 << module << " is not a PP_Module." [all...] |
plugin_module.h | 135 PP_Module pp_module() const { return pp_module_; } function in class:content::PluginModule 182 PP_Bool (*reserve)(PP_Module, PP_Instance)); 233 PP_Module pp_module_; 272 PP_Bool (*reserve_instance_id_)(PP_Module, PP_Instance);
|
ppb_var_deprecated_impl.cc | 107 // that the TryCatch's pp_module() getter is also set up properly and ready to 141 // use (via the identifier() getter), and that the TryCatch's pp_module() getter 400 PP_Var CreateObjectWithModuleDeprecated(PP_Module pp_module, 403 PluginModule* module = HostGlobals::Get()->GetModule(pp_module);
|
plugin_module.cc | 62 #include "ppapi/c/pp_module.h" 170 // Maintains all currently loaded plugin libs for validating PP_Module 460 // PPB_Proxy.IsInModuleDestructor to map PP_Module to this class during the 611 PP_Bool (*reserve)(PP_Module, PP_Instance)) { 673 int retval = entry_points.initialize_module(pp_module(), &GetInterface);
|
/external/chromium_org/ppapi/tests/ |
test_var_deprecated.cc | 96 PP_Var str = var_interface_->VarFromUtf8(pp::Module::Get()->pp_module(), 166 pp::Module::Get()->pp_module(), NULL, 0);
|