OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:npErr
(Results
1 - 7
of
7
) sorted by null
/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/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/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/
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/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/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 4398 milliseconds