Home
last modified time | relevance | path

Searched refs:npobj (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/npapi/bindings/
Dnpruntime.h252 typedef void (*NPDeallocateFunctionPtr)(NPObject *npobj);
253 typedef void (*NPInvalidateFunctionPtr)(NPObject *npobj);
254 typedef bool (*NPHasMethodFunctionPtr)(NPObject *npobj, NPIdentifier name);
255 typedef bool (*NPInvokeFunctionPtr)(NPObject *npobj, NPIdentifier name,
258 typedef bool (*NPInvokeDefaultFunctionPtr)(NPObject *npobj,
262 typedef bool (*NPHasPropertyFunctionPtr)(NPObject *npobj, NPIdentifier name);
263 typedef bool (*NPGetPropertyFunctionPtr)(NPObject *npobj, NPIdentifier name,
265 typedef bool (*NPSetPropertyFunctionPtr)(NPObject *npobj, NPIdentifier name,
267 typedef bool (*NPRemovePropertyFunctionPtr)(NPObject *npobj,
269 typedef bool (*NPEnumerationFunctionPtr)(NPObject *npobj, NPIdentifier **value,
[all …]
/external/chromium_org/third_party/npapi/npspy/extern/plugin/
Dnpruntime.h278 typedef void (*NPDeallocateFunctionPtr)(NPObject *npobj);
279 typedef void (*NPInvalidateFunctionPtr)(NPObject *npobj);
280 typedef bool (*NPHasMethodFunctionPtr)(NPObject *npobj, NPIdentifier name);
281 typedef bool (*NPInvokeFunctionPtr)(NPObject *npobj, NPIdentifier name,
284 typedef bool (*NPInvokeDefaultFunctionPtr)(NPObject *npobj,
288 typedef bool (*NPHasPropertyFunctionPtr)(NPObject *npobj, NPIdentifier name);
289 typedef bool (*NPGetPropertyFunctionPtr)(NPObject *npobj, NPIdentifier name,
291 typedef bool (*NPSetPropertyFunctionPtr)(NPObject *npobj, NPIdentifier name,
293 typedef bool (*NPRemovePropertyFunctionPtr)(NPObject *npobj,
295 typedef bool (*NPEnumerationFunctionPtr)(NPObject *npobj, NPIdentifier **value,
[all …]
/external/chromium_org/content/child/npapi/
Dnpobject_util.cc31 NPObject *npobj, in NPN_HasMethodPatch() argument
33 return NPObjectProxy::NPHasMethod(npobj, methodName); in NPN_HasMethodPatch()
36 static bool NPN_InvokePatch(NPP npp, NPObject *npobj, in NPN_InvokePatch() argument
41 return NPObjectProxy::NPInvokePrivate(npp, npobj, false, methodName, args, in NPN_InvokePatch()
46 NPObject *npobj, in NPN_InvokeDefaultPatch() argument
50 return NPObjectProxy::NPInvokePrivate(npp, npobj, true, 0, args, argCount, in NPN_InvokeDefaultPatch()
55 NPObject *npobj, in NPN_HasPropertyPatch() argument
57 return NPObjectProxy::NPHasProperty(npobj, propertyName); in NPN_HasPropertyPatch()
61 NPObject *npobj, in NPN_GetPropertyPatch() argument
64 return NPObjectProxy::NPGetProperty(npobj, propertyName, result); in NPN_GetPropertyPatch()
[all …]
Dnpobject_proxy.h57 static bool NPInvokeDefault(NPObject *npobj,
74 static bool NPNConstruct(NPObject *npobj,
Dnpobject_proxy.cc155 bool NPObjectProxy::NPInvokeDefault(NPObject *npobj, in NPInvokeDefault() argument
159 return NPInvokePrivate(0, npobj, true, 0, args, arg_count, result); in NPInvokeDefault()
/external/chromium_org/content/shell/tools/plugin/
DTestObject.cpp37 static bool testEnumerate(NPObject* npobj,
152 static bool testGetProperty(NPObject* npobj, in testGetProperty() argument
169 static_cast<int32_t>(reinterpret_cast<long long>(npobj)); in testGetProperty()
175 TestObject* testObject = reinterpret_cast<TestObject*>(npobj); in testGetProperty()
183 INT32_TO_NPVARIANT(npobj->referenceCount, *result); in testGetProperty()
204 static bool testConstruct(NPObject* npobj, in testConstruct() argument
208 browser->retainobject(npobj); in testConstruct()
211 OBJECT_TO_NPVARIANT(npobj, *result); in testConstruct()
DPluginTest.cpp156 bool PluginTest::NPN_Invoke(NPObject* npobj, in NPN_Invoke() argument
161 return browser->invoke(m_npp, npobj, methodName, args, argCount, result); in NPN_Invoke()