/external/chromium_org/content/child/npapi/ |
plugin_instance.cc | 33 npp_(0), 63 npp_ = new NPP_t(); 64 npp_->ndata = 0; 65 npp_->pdata = 0; 77 if (npp_ != 0) { 78 delete npp_; 79 npp_ = 0; 160 npp_->ndata = this; 225 (NPMIMEType)mime_type_.c_str(), npp_, mode, argc, argn, argv, NULL); 236 npp_functions_->destroy(npp_, &savedData) [all...] |
plugin_instance.h | 76 NPP npp() { return npp_; } 289 NPP npp_; member in class:content::PluginInstance
|
/external/chromium_org/third_party/npapi/npspy/ |
readme | 2 NPSPY sits between the browser and plugin and allows logging of all NPP_* and NPN_* function calls
|
/external/chromium_org/content/plugin/ |
plugin_channel.cc | 246 npp_(new struct _NPP) { 251 // Register |npp_| as the default owner for any object we receive via IPC, 253 SetDefaultNPObjectOwner(npp_.get()); 254 WebBindings::registerObjectOwner(npp_.get());
|
plugin_channel.h | 100 scoped_ptr<struct _NPP> npp_; member in class:content::PluginChannel
|
/external/chromium_org/third_party/npapi/npspy/include/ |
logger.h | 64 // (NPN_* and NPP_* only, NPP_Initialize and NPP_Shutdown not included)
|
/external/chromium_org/content/renderer/browser_plugin/ |
browser_plugin.cc | 529 npp_.reset(new NPP_t); 566 // If the plugin was initialized then it has a valid |npp_| identifier, and 568 DCHECK(!npp_ || container_); 592 return npp_.get(); [all...] |
browser_plugin.h | 300 scoped_ptr<struct _NPP> npp_; member in class:content::BrowserPlugin
|
/external/chromium_org/content/renderer/npapi/ |
webplugin_delegate_proxy.h | 280 scoped_ptr<NPP_t> npp_; member in class:content::WebPluginDelegateProxy
|
webplugin_impl.cc | 243 npp_ = plugin_delegate->GetPluginNPP(); 289 return npp_; 541 npp_(NULL), [all...] |
webplugin_impl.h | 296 struct _NPP* npp_; member in class:content::WebPluginImpl
|
webplugin_delegate_proxy.cc | 215 npp_(new NPP_t), 746 return npp_.get(); [all...] |
/external/chromium_org/third_party/npapi/bindings/ |
npapi.h | 821 /* NPP_* functions are provided by the plugin and called by the navigator. */
|
/external/chromium_org/third_party/npapi/npspy/extern/plugin/ |
npapi.h | 675 * NPP_* functions are provided by the plugin and called by the navigator.
|
/external/chromium_org/content/renderer/pepper/ |
pepper_plugin_instance_impl.h | 885 scoped_ptr<struct _NPP> npp_; member in class:content::PepperPluginInstanceImpl [all...] |
pepper_plugin_instance_impl.cc | 562 npp_(new NPP_t), [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
cpp.py | [all...] |
cpp_unittest.py | [all...] |