Home
last modified time | relevance | path

Searched refs:npErr (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/plugins/win/
DPluginPackageWin.cpp271 NPError npErr; in load() local
289 npErr = NP_GetEntryPoints(&m_pluginFuncs); in load()
290 LOG_NPERROR(npErr); in load()
291 if (npErr != NPERR_NO_ERROR) in load()
296 npErr = NP_Initialize(&m_browserFuncs); in load()
297 LOG_NPERROR(npErr); in load()
299 if (npErr != NPERR_NO_ERROR) in load()
/external/webkit/Source/WebCore/plugins/mac/
DPluginPackageMac.cpp271 NPError npErr; in load() local
285 npErr = NP_Initialize(&m_browserFuncs); in load()
286 LOG_NPERROR(npErr); in load()
287 if (npErr != NPERR_NO_ERROR) in load()
290 npErr = NP_GetEntryPoints(&m_pluginFuncs); in load()
291 LOG_NPERROR(npErr); in load()
292 if (npErr != NPERR_NO_ERROR) in load()
/external/webkit/Source/WebCore/plugins/qt/
DPluginPackageQt.cpp152 NPError npErr; in load() local
179 npErr = NP_Initialize(&m_browserFuncs, &m_pluginFuncs); in load()
181 npErr = NP_Initialize(&m_browserFuncs); in load()
183 if (npErr != NPERR_NO_ERROR) in load()
/external/webkit/Source/WebCore/plugins/gtk/
DPluginPackageGtk.cpp184 NPError npErr; in load() local
198 npErr = NP_Initialize(&m_browserFuncs, &m_pluginFuncs); in load()
200 npErr = NP_Initialize(&m_browserFuncs); in load()
202 if (npErr != NPERR_NO_ERROR) in load()
/external/webkit/Source/WebCore/plugins/symbian/
DPluginPackageSymbian.cpp113 NPError npErr; in load() local
162 npErr = m_npInterface->NP_Initialize(&m_browserFuncs, &m_pluginFuncs); in load()
163 if (npErr != NPERR_NO_ERROR) { in load()
/external/webkit/Source/WebCore/plugins/
DPluginStream.cpp185 …NPError npErr = m_pluginFuncs->newstream(m_instance, (NPMIMEType)mimeTypeStr.data(), &m_stream, fa… in startStream() local
193 if (npErr != NPERR_NO_ERROR) { in startStream()
194 cancelAndDestroyStream(npErr); in startStream()
269 NPError npErr = m_pluginFuncs->destroystream(m_instance, &m_stream, m_reason); in destroyStream() local
274 LOG_NPERROR(npErr); in destroyStream()
DPluginView.cpp253 NPError npErr; in start() local
260npErr = m_plugin->pluginFuncs()->newp((NPMIMEType)m_mimeType.utf8().data(), m_instance, m_mode, m_… in start()
262 LOG_NPERROR(npErr); in start()
266 if (npErr != NPERR_NO_ERROR) { in start()
411 NPError npErr = m_plugin->pluginFuncs()->destroy(m_instance, &savedData); in stop() local
413 LOG_NPERROR(npErr); in stop()
787 NPError npErr; in npObject() local
794npErr = m_plugin->pluginFuncs()->getvalue(m_instance, NPPVpluginScriptableNPObject, &object); in npObject()
799 if (npErr != NPERR_NO_ERROR) in npObject()
840 NPError npErr; in getNPObject() local
[all …]
/external/webkit/Source/WebKit/mac/Plugins/
DWebNetscapePluginPackage.mm347 NPError npErr;
500 npErr = pluginMainFunc(&browserFuncs, &pluginFuncs, &shutdownFunction);
508 if (npErr != NPERR_NO_ERROR) {
509 …if (npErr == NPERR_MODULE_LOAD_FAILED_ERROR && equalIgnoringCase(pluginInfo.file, RealPlayerPlugin…
521 LOG(Plugins, "pluginMainFunc: %d, size=%d, version=%d", npErr, pluginSize, pluginVersion);
612 npErr = NP_Initialize(&browserFuncs);
613 if (npErr != NPERR_NO_ERROR)
623 npErr = NP_GetEntryPoints(&pluginFuncs);
624 if (npErr != NPERR_NO_ERROR)
DWebNetscapePluginStream.mm244 NPError npErr;
247npErr = m_pluginFuncs->newstream(m_plugin, m_mimeType.mutableData(), &m_stream, NO, &m_transferMod…
250 …G(Plugins, "NPP_NewStream URL=%@ MIME=%s error=%d", m_responseURL.get(), m_mimeType.data(), npErr);
252 if (npErr != NPERR_NO_ERROR) {
253 … LOG_ERROR("NPP_NewStream failed with error: %d responseURL: %@", npErr, m_responseURL.get());
421 NPError npErr =
424 LOG(Plugins, "NPP_DestroyStream responseURL=%@ error=%d", m_responseURL.get(), npErr);
DWebNetscapePluginView.mm990 NPError npErr;
997 npErr = [_pluginPackage.get() pluginFuncs]->setwindow(plugin, &window);
1007npErr, (int)nPort.qdPort.port, (int)window.x, (int)window.y, (int)window.width, (int)window.height…
1013npErr, nPort.cgPort.window, nPort.cgPort.context, (int)window.x, (int)window.y, (int)window.width,…
1019npErr, window.window, nPort.cgPort.context, (int)window.x, (int)window.y, (int)window.width, (int)…
1054 NPError npErr = [self _createPlugin];
1055 if (npErr != NPERR_NO_ERROR) {
1056 LOG_ERROR("NPP_New failed with error: %d", npErr);
2393 …NPError npErr = [_pluginPackage.get() pluginFuncs]->newp((char *)[_MIMEType.get() cString], plugin…
2397 LOG(Plugins, "NPP_New: %d", npErr);
[all …]
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
DPluginObject.cpp541 NPError npErr = browser->geturl(obj->npp, urlString, targetString); in getURL() local
545 INT32_TO_NPVARIANT(npErr, *result); in getURL()
550 NPError npErr = browser->geturl(obj->npp, urlString, 0); in getURL() local
553 INT32_TO_NPVARIANT(npErr, *result); in getURL()
/external/webkit/Source/WebKit/mac/
DChangeLog-2010-01-2914570 added !LOG_DISABLED guard around declaration of npErr used only in LOG
16065 Don't define to npErr in release builds, as it is only used for logging.
/external/webkit/Source/WebCore/
DChangeLog-2010-12-0656179 (WebCore::PluginView::bindingInstance): Moved npErr variable