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

  /external/webkit/WebCore/plugins/gtk/
PluginPackageGtk.cpp 120 NPError npErr;
134 npErr = NP_Initialize(&m_browserFuncs, &m_pluginFuncs);
136 npErr = NP_Initialize(&m_browserFuncs);
138 if (npErr != NPERR_NO_ERROR)
  /external/webkit/WebCore/plugins/qt/
PluginPackageQt.cpp 111 NPError npErr;
131 npErr = NP_Initialize(&m_browserFuncs, &m_pluginFuncs);
133 npErr = NP_Initialize(&m_browserFuncs);
135 if (npErr != NPERR_NO_ERROR)
  /external/webkit/WebCore/plugins/symbian/
PluginPackageSymbian.cpp 100 NPError npErr;
149 npErr = m_npInterface->NP_Initialize(&m_browserFuncs, &m_pluginFuncs);
150 if (npErr != NPERR_NO_ERROR) {
  /external/webkit/WebCore/plugins/
PluginStream.cpp 189 NPError npErr = m_pluginFuncs->newstream(m_instance, (NPMIMEType)mimeTypeStr.data(), &m_stream, false, &m_transferMode);
197 if (npErr != NPERR_NO_ERROR) {
198 cancelAndDestroyStream(npErr);
273 NPError npErr = m_pluginFuncs->destroystream(m_instance, &m_stream, m_reason);
278 LOG_NPERROR(npErr);
PluginView.cpp 246 NPError npErr;
253 npErr = m_plugin->pluginFuncs()->newp((NPMIMEType)m_mimeType.utf8().data(), m_instance, m_mode, m_paramCount, m_paramNames, m_paramValues, NULL);
255 LOG_NPERROR(npErr);
259 if (npErr != NPERR_NO_ERROR) {
403 NPError npErr = m_plugin->pluginFuncs()->destroy(m_instance, &savedData);
405 LOG_NPERROR(npErr);
797 NPError npErr;
802 npErr = m_plugin->pluginFuncs()->getvalue(m_instance, NPPVpluginScriptableNPObject, &object);
814 if (npErr != NPERR_NO_ERROR || !object)
838 NPError npErr;
    [all...]
  /external/webkit/WebCore/plugins/mac/
PluginPackageMac.cpp 273 NPError npErr;
287 npErr = NP_Initialize(&m_browserFuncs);
288 LOG_NPERROR(npErr);
289 if (npErr != NPERR_NO_ERROR)
292 npErr = NP_GetEntryPoints(&m_pluginFuncs);
293 LOG_NPERROR(npErr);
294 if (npErr != NPERR_NO_ERROR)
  /external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/
PluginObject.cpp 412 NPError npErr = browser->geturl(obj->npp, urlString, targetString);
416 INT32_TO_NPVARIANT(npErr, *result);
420 NPError npErr = browser->geturl(obj->npp, urlString, 0);
423 INT32_TO_NPVARIANT(npErr, *result);
    [all...]

Completed in 188 milliseconds