HomeSort by relevance Sort by last modified time
    Searched full:npobj (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/npapi/bindings/
npruntime.h 252 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/content/child/npapi/
npobject_util.cc 31 NPObject *npobj,
33 return NPObjectProxy::NPHasMethod(npobj, methodName);
36 static bool NPN_InvokePatch(NPP npp, NPObject *npobj,
41 return NPObjectProxy::NPInvokePrivate(npp, npobj, false, methodName, args,
46 NPObject *npobj,
50 return NPObjectProxy::NPInvokePrivate(npp, npobj, true, 0, args, argCount,
55 NPObject *npobj,
57 return NPObjectProxy::NPHasProperty(npobj, propertyName);
61 NPObject *npobj,
64 return NPObjectProxy::NPGetProperty(npobj, propertyName, result)
    [all...]
npobject_proxy.h 57 static bool NPInvokeDefault(NPObject *npobj,
74 static bool NPNConstruct(NPObject *npobj,
112 static void NPDeallocate(NPObject* npObj);
npobject_proxy.cc 110 void NPObjectProxy::NPDeallocate(NPObject* npObj) {
111 NPObjectWrapper* obj = reinterpret_cast<NPObjectWrapper*>(npObj);
155 bool NPObjectProxy::NPInvokeDefault(NPObject *npobj,
159 return NPInvokePrivate(0, npobj, true, 0, args, arg_count, result);
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
TestObject.cpp 32 static bool testEnumerate(NPObject *npobj, NPIdentifier **value, uint32_t *count);
162 static bool testGetProperty(NPObject* npobj, NPIdentifier name, NPVariant* result)
171 int32_t objectPointer = static_cast<int32_t>(reinterpret_cast<long long>(npobj));
177 TestObject* testObject = reinterpret_cast<TestObject*>(npobj);
185 INT32_TO_NPVARIANT(npobj->referenceCount, *result);
192 static bool testEnumerate(NPObject* /*npobj*/, NPIdentifier **value, uint32_t *count)
202 static bool testConstruct(NPObject* npobj, const NPVariant* /*args*/, uint32_t /*argCount*/, NPVariant* result)
204 browser->retainobject(npobj);
207 OBJECT_TO_NPVARIANT(npobj, *result);
PluginTest.cpp 169 bool PluginTest::NPN_Invoke(NPObject *npobj, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result)
171 return browser->invoke(m_npp, npobj, methodName, args, argCount, result);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
CppBoundClass.cpp 170 void CppNPObject::deallocate(NPObject* npObj)
172 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
176 bool CppNPObject::hasMethod(NPObject* npObj, NPIdentifier ident)
178 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
182 bool CppNPObject::hasProperty(NPObject* npObj, NPIdentifier ident)
184 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
188 bool CppNPObject::invoke(NPObject* npObj, NPIdentifier ident,
192 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
196 bool CppNPObject::getProperty(NPObject* npObj, NPIdentifier ident, NPVariant* result)
198 CppNPObject* obj = reinterpret_cast<CppNPObject*>(npObj);
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npruntime.h 278 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/third_party/WebKit/public/web/
WebBindings.h 150 // Return true (success) if the given npobj is a range object.
154 // Return true (success) if the given npobj is an ArrayBuffer object.
158 // Return true (success) if the given npobj is an ArrayBufferView object.
162 // Return true (success) if the given npobj is a node.
166 // Return true (success) if the given npobj is an element.
  /external/chromium_org/remoting/host/plugin/
host_plugin.cc 239 static void Deallocate(NPObject* npobj) {
241 if (npobj) {
242 Invalidate(npobj);
243 g_npnetscape_funcs->memfree(npobj);
247 static void Invalidate(NPObject* npobj) {
248 if (npobj) {
249 ScriptableNPObject* object = reinterpret_cast<ScriptableNPObject*>(npobj);
  /external/chromium/webkit/glue/
cpp_variant_unittest.cc 65 void MockNPDeallocate(NPObject* npobj) {
70 free(npobj);
431 bool MockNPHasPropertyFunction(NPObject *npobj, NPIdentifier name) {
435 bool MockNPGetPropertyFunction(NPObject *npobj, NPIdentifier name,
  /external/chromium_org/webkit/renderer/
cpp_variant_unittest.cc 67 void MockNPDeallocate(NPObject* npobj) {
72 free(npobj);
452 bool MockNPHasPropertyFunction(NPObject *npobj, NPIdentifier name) {
456 bool MockNPGetPropertyFunction(NPObject *npobj, NPIdentifier name,

Completed in 479 milliseconds