HomeSort by relevance Sort by last modified time
    Searched refs:PP_Module (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/chromium_org/ppapi/api/
pp_module.idl 7 * This file defines the PP_Module type which uniquely identifies the module
12 * The PP_Module value uniquely identifies the module or .nexe.
19 typedef int32_t PP_Module;
ppp.idl 13 #include "ppapi/c/pp_module.h"
52 PP_EXPORT int32_t PPP_InitializeModule(PP_Module module,
128 [in] PP_Module module,
ppb_var.idl 63 * @param[in] module A PP_Module uniquely identifying the module or .nexe.
71 PP_Var VarFromUtf8([in] PP_Module module, [in] str_t data, [in] uint32_t len);
  /external/chromium_org/ppapi/c/
pp_module.h 6 /* From pp_module.idl modified Sat Jul 16 16:50:26 2011. */
16 * This file defines the PP_Module type which uniquely identifies the module
26 * The PP_Module value uniquely identifies the module or .nexe.
32 typedef int32_t PP_Module;
33 PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_Module, 4);
ppp.h 12 #include "ppapi/c/pp_module.h"
24 #include "ppapi/c/pp_module.h"
63 PP_EXPORT int32_t PPP_InitializeModule(PP_Module module,
142 PP_Module module,
  /external/chromium_org/ppapi/c/private/
ppb_proxy_private.h 10 #include "ppapi/c/pp_module.h"
19 void (*PluginCrashed)(PP_Module module);
34 PP_Module module,
35 PP_Bool (*is_seen)(PP_Module, PP_Instance));
40 void (*AddRefModule)(PP_Module module);
41 void (*ReleaseModule)(PP_Module module);
44 PP_Bool (*IsInModuleDestructor)(PP_Module module);
  /external/chromium_org/ppapi/api/private/finish_writing_these/
ppb_proxy_private.idl 12 [in] PP_Module module);
  /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();
  /external/chromium_org/remoting/client/plugin/
pepper_entrypoints.h 8 #include "ppapi/c/pp_module.h"
13 int PPP_InitializeModule(PP_Module module_id,
  /external/chromium_org/ppapi/examples/stub/
stub.c 12 #include "ppapi/c/pp_module.h"
16 PP_Module g_module_id;
19 PP_EXPORT int32_t PPP_InitializeModule(PP_Module module_id,
  /external/chromium_org/content/renderer/pepper/
ppb_proxy_impl.cc 21 void PluginCrashed(PP_Module module) {
35 void SetReserveInstanceIDCallback(PP_Module module,
36 PP_Bool (*reserve)(PP_Module, PP_Instance)) {
42 void AddRefModule(PP_Module module) {
48 void ReleaseModule(PP_Module module) {
54 PP_Bool IsInModuleDestructor(PP_Module module) {
host_globals.h 42 virtual PP_Module GetModuleForInstance(PP_Instance instance) OVERRIDE;
49 virtual void BroadcastLogWithSource(PP_Module module,
62 PP_Module AddModule(PluginModule* module);
66 void ModuleDeleted(PP_Module module);
70 PluginModule* GetModule(PP_Module module);
104 typedef std::map<PP_Module, PluginModule*> ModuleMap;
plugin_module.h 134 PP_Module pp_module() const { return pp_module_; } function in class:content::PluginModule
179 void SetReserveInstanceIDCallback(PP_Bool (*reserve)(PP_Module, PP_Instance));
230 PP_Module pp_module_;
269 PP_Bool (*reserve_instance_id_)(PP_Module, PP_Instance);
  /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_;
  /external/chromium_org/ppapi/nacl_irt/public/
irt_ppapi.h 15 int32_t (*PPP_InitializeModule)(PP_Module module_id,
  /external/chromium_org/components/nacl/loader/nonsfi/
irt_ppapi.cc 32 int32_t PPP_InitializeModule(PP_Module module_id,
  /external/chromium_org/ppapi/proxy/
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
119 PP_Module pp_module_;
  /external/chromium_org/content/public/common/
pepper_plugin_info.h 14 #include "ppapi/c/pp_module.h"
21 typedef int (*PPP_InitializeModuleFunc)(PP_Module, PPB_GetInterface);
  /external/chromium_org/mojo/examples/pepper_container_app/
plugin_module.h 13 #include "ppapi/c/pp_module.h"
33 PP_Module pp_module() const { return 1; } function in class:mojo::examples::PluginModule
mojo_ppapi_globals.h 56 virtual void BroadcastLogWithSource(PP_Module module,
64 virtual PP_Module GetModuleForInstance(PP_Instance instance) OVERRIDE;
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_irt_shim/
irt_shim_ppapi.c 27 static int32_t shim_PPPInitializeModule(PP_Module module_id,
  /external/chromium_org/ppapi/c/dev/
ppb_var_deprecated.h 10 #include "ppapi/c/pp_module.h"
62 struct PP_Var (*VarFromUtf8)(PP_Module module,
244 PP_Module module,
  /external/chromium_org/ppapi/shared_impl/
ppapi_globals.h 16 #include "ppapi/c/pp_module.h"
89 virtual void BroadcastLogWithSource(PP_Module module,
100 // Returns the PP_Module associated with the given PP_Instance, or 0 on
102 virtual PP_Module GetModuleForInstance(PP_Instance instance) = 0;
test_globals.cc 41 PP_Module TestGlobals::GetModuleForInstance(PP_Instance instance) { return 0; }
52 void TestGlobals::BroadcastLogWithSource(PP_Module module,

Completed in 367 milliseconds

1 2 3