Home
last modified time | relevance | path

Searched refs:nppfuncs (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/npapi/npspy/common/
Depmanager.cpp210 NPPluginFuncs * nppfuncs = NULL; in callNPP_New() local
216 nppfuncs = &eps->realNPPFuncs; in callNPP_New()
228 if(!nppfuncs || !nppfuncs->newp) in callNPP_New()
231 NPError rv = CallNPP_NewProc(nppfuncs->newp, pluginType, instance, mode, argc, argn, argv, saved); in callNPP_New()
238 NPPluginFuncs * nppfuncs = NULL; in callNPP_Destroy() local
249 nppfuncs = &eps->realNPPFuncs; in callNPP_Destroy()
275 if(!nppfuncs || !nppfuncs->destroy) in callNPP_Destroy()
278 return CallNPP_DestroyProc(nppfuncs->destroy, instance, save); in callNPP_Destroy()
283 NPPluginFuncs * nppfuncs = findEntryPointsForInstance(instance); in callNPP_SetWindow() local
284 if(!nppfuncs || !nppfuncs->setwindow) in callNPP_SetWindow()
[all …]
/external/chromium_org/remoting/host/plugin/
Dhost_plugin.cc516 EXPORT NPError API_CALL NP_GetEntryPoints(NPPluginFuncs* nppfuncs) { in NP_GetEntryPoints() argument
518 nppfuncs->version = (NP_VERSION_MAJOR << 8) | NP_VERSION_MINOR; in NP_GetEntryPoints()
519 nppfuncs->newp = &CreatePlugin; in NP_GetEntryPoints()
520 nppfuncs->destroy = &DestroyPlugin; in NP_GetEntryPoints()
521 nppfuncs->getvalue = &GetValue; in NP_GetEntryPoints()
522 nppfuncs->event = &HandleEvent; in NP_GetEntryPoints()
523 nppfuncs->setwindow = &SetWindow; in NP_GetEntryPoints()
530 , NPPluginFuncs* nppfuncs in NP_Initialize() argument
544 NP_GetEntryPoints(nppfuncs); in NP_Initialize()