HomeSort by relevance Sort by last modified time
    Searched refs:npErr (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/plugins/qt/
PluginPackageQt.cpp 152 NPError npErr;
179 npErr = NP_Initialize(&m_browserFuncs, &m_pluginFuncs);
181 npErr = NP_Initialize(&m_browserFuncs);
183 if (npErr != NPERR_NO_ERROR)
  /external/webkit/Source/WebCore/plugins/win/
PluginPackageWin.cpp 271 NPError npErr;
289 npErr = NP_GetEntryPoints(&m_pluginFuncs);
290 LOG_NPERROR(npErr);
291 if (npErr != NPERR_NO_ERROR)
296 npErr = NP_Initialize(&m_browserFuncs);
297 LOG_NPERROR(npErr);
299 if (npErr != NPERR_NO_ERROR)
  /external/webkit/Source/WebCore/plugins/gtk/
PluginPackageGtk.cpp 184 NPError npErr;
198 npErr = NP_Initialize(&m_browserFuncs, &m_pluginFuncs);
200 npErr = NP_Initialize(&m_browserFuncs);
202 if (npErr != NPERR_NO_ERROR)
  /external/webkit/Source/WebCore/plugins/mac/
PluginPackageMac.cpp 271 NPError npErr;
285 npErr = NP_Initialize(&m_browserFuncs);
286 LOG_NPERROR(npErr);
287 if (npErr != NPERR_NO_ERROR)
290 npErr = NP_GetEntryPoints(&m_pluginFuncs);
291 LOG_NPERROR(npErr);
292 if (npErr != NPERR_NO_ERROR)
  /external/webkit/Source/WebCore/plugins/symbian/
PluginPackageSymbian.cpp 113 NPError npErr;
162 npErr = m_npInterface->NP_Initialize(&m_browserFuncs, &m_pluginFuncs);
163 if (npErr != NPERR_NO_ERROR) {
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapePluginStream.mm 244 NPError npErr;
247 npErr = m_pluginFuncs->newstream(m_plugin, m_mimeType.mutableData(), &m_stream, NO, &m_transferMode);
250 LOG(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);
WebNetscapePluginPackage.mm 347 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, RealPlayerPluginFilename))
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)
WebNetscapePluginView.mm     [all...]
  /external/webkit/Source/WebCore/plugins/
PluginStream.cpp 185 NPError npErr = m_pluginFuncs->newstream(m_instance, (NPMIMEType)mimeTypeStr.data(), &m_stream, false, &m_transferMode);
193 if (npErr != NPERR_NO_ERROR) {
194 cancelAndDestroyStream(npErr);
269 NPError npErr = m_pluginFuncs->destroystream(m_instance, &m_stream, m_reason);
274 LOG_NPERROR(npErr);
PluginView.cpp 253 NPError npErr;
260 npErr = m_plugin->pluginFuncs()->newp((NPMIMEType)m_mimeType.utf8().data(), m_instance, m_mode, m_paramCount, m_paramNames, m_paramValues, NULL);
262 LOG_NPERROR(npErr);
266 if (npErr != NPERR_NO_ERROR) {
411 NPError npErr = m_plugin->pluginFuncs()->destroy(m_instance, &savedData);
413 LOG_NPERROR(npErr);
787 NPError npErr;
794 npErr = m_plugin->pluginFuncs()->getvalue(m_instance, NPPVpluginScriptableNPObject, &object);
799 if (npErr != NPERR_NO_ERROR)
840 NPError npErr;
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObject.cpp 541 NPError npErr = browser->geturl(obj->npp, urlString, targetString);
545 INT32_TO_NPVARIANT(npErr, *result);
550 NPError npErr = browser->geturl(obj->npp, urlString, 0);
553 INT32_TO_NPVARIANT(npErr, *result);
    [all...]

Completed in 1195 milliseconds