HomeSort by relevance Sort by last modified time
    Searched full:npobject (Results 51 - 75 of 166) sorted by null

1 23 4 5 6 7

  /external/chromium_org/content/test/plugin/
plugin_npobject_identity_test.h 12 // The NPObjectProxyTest tests that when we proxy an NPObject that is itself
plugin_npobject_proxy_test.h 13 // The NPObjectProxyTest tests that when we proxy an NPObject that is itself
plugin_npobject_proxy_test.cc 27 NPObject *window_obj = NULL;
31 NPObject *doc = NPVARIANT_TO_OBJECT(docv);
plugin_npobject_lifetime_test.cc 12 NPObject* NPObjectLifetimeTestInstance2::plugin_instance_object_ = NULL;
32 // We attempt to retreive the NPObject for the plugin instance identified
101 SetError("Failed to get NPObject for plugin instance2");
149 NPObject *window_obj = NULL;
156 "Failed to get NPObject for plugin instance2");
  /external/chromium_org/third_party/npapi/bindings/
npfunctions.h 101 typedef NPObject* (*NPN_CreateObjectProcPtr)(NPP npp, NPClass *aClass);
102 typedef NPObject* (*NPN_RetainObjectProcPtr)(NPObject *obj);
103 typedef void (*NPN_ReleaseObjectProcPtr)(NPObject *obj);
104 typedef bool (*NPN_InvokeProcPtr)(NPP npp, NPObject* obj, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result);
105 typedef bool (*NPN_InvokeDefaultProcPtr)(NPP npp, NPObject* obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
106 typedef bool (*NPN_EvaluateProcPtr)(NPP npp, NPObject *obj, NPString *script, NPVariant *result);
107 typedef bool (*NPN_GetPropertyProcPtr)(NPP npp, NPObject *obj, NPIdentifier propertyName, NPVariant *result);
108 typedef bool (*NPN_SetPropertyProcPtr)(NPP npp, NPObject *obj, NPIdentifier propertyName, const NPVariant *value);
109 typedef bool (*NPN_RemovePropertyProcPtr)(NPP npp, NPObject *obj, NPIdentifier propertyName)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
CppVariant.cpp 96 NPObject* thisValue = value.objectValue;
97 NPObject* otherValue = other.value.objectValue;
211 void CppVariant::set(NPObject* newValue)
256 NPObject* npValue = value.objectValue;
302 NPObject* npObject = value.objectValue;
303 if (!WebBindings::hasMethod(0, npObject, methodName))
306 bool status = WebBindings::invoke(0, npObject, methodName, arguments, argumentCount, &r);
315 NPObject* npObject = value.objectValue
    [all...]
  /external/chromium_org/content/test/data/npapi/
plugin_delete_in_deallocate.html 35 NPObject Delete in Deallocate<p>
37 Tests the case where deallocation of an NPObject belonging to the plugin
execute_script_delete_in_mouse_up.html 21 NPObject Proxy Test<p>
multiple_instances_sync_calls.html 15 NPObject Proxy Test<p>
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8NPUtils.cpp 46 void convertV8ObjectToNPVariant(v8::Local<v8::Value> object, NPObject* owner, NPVariant* result, v8::Isolate* isolate)
73 NPObject* npobject = npCreateV8ScriptObject(0, v8::Handle<v8::Object>::Cast(object), window, isolate); local
74 if (npobject)
75 _NPN_RegisterObject(npobject, owner);
76 OBJECT_TO_NPVARIANT(npobject, *result);
80 v8::Handle<v8::Value> convertNPVariantToV8Object(const NPVariant* variant, NPObject* owner, v8::Isolate* isolate)
100 NPObject* object = NPVARIANT_TO_OBJECT(*variant);
V8NPObject.h 54 // Get a wrapper for a NPObject.
57 v8::Local<v8::Object> createV8ObjectForNPObject(NPObject*, NPObject* root, v8::Isolate*);
61 // function, the persistent handle to the wrapper will be gone, and the wrapped NPObject will be removed so that it
63 void forgetV8ObjectForNPObject(NPObject*);
ScriptController.h 45 struct NPObject;
111 void bindToWindowObject(Frame*, const String& key, NPObject*);
148 NPObject* createScriptObjectForPluginElement(HTMLPlugInElement*);
149 NPObject* windowScriptNPObject();
164 typedef HashMap<Widget*, NPObject*> PluginObjectMap;
179 // The frame keeps a NPObject reference for each item on the list.
182 NPObject* m_windowScriptNPObject;
  /external/chromium_org/content/browser/renderer_host/java/
java_bound_object.h 36 // well. Returns an NPObject with a ref count of one which owns the
39 static NPObject* Create(
47 // wrapped as an NPObject. May return null if the underlying object has
50 NPObject* object);
52 // Methods to implement the NPObject callbacks.
  /external/chromium_org/content/child/npapi/
np_channel_base.cc 249 NPObjectBase* npobject) {
250 if (npobject) {
251 npobject_listeners_[route_id] = npobject;
264 // This was an NPObject proxy or stub, it's not involved in the refcounting.
266 // If this RemoveRoute call from the NPObject is a result of us calling
327 NPObject* object) {
336 NPObject* object) {
342 NPObject* object) {
365 NPObject* NPChannelBase::GetExistingNPObjectProxy(int route_id) {
370 int NPChannelBase::GetExistingRouteForNPObjectStub(NPObject* npobject)
    [all...]
npobject_stub.cc 26 NPObject* npobject,
31 : npobject_(npobject),
36 channel_->AddMappingForNPObjectStub(route_id, npobject);
55 NPObject* npobject = npobject_; local
58 WebBindings::releaseObject(npobject);
68 NPObject* NPObjectStub::GetUnderlyingNPObject() {
121 // If we're in the plugin process, then the stub is holding onto an NPObject
  /external/chromium_org/content/child/
plugin_param_traits.h 34 // Used when when the NPObject is running in the caller's process, so we
36 // tracking the routing-Id of the NPObject's owning plugin instance is
39 // Used when the NPObject we're sending is running in the callee's process
  /external/chromium_org/third_party/WebKit/Source/testing/plugin/
PluginObject.h 38 NPObject header;
48 NPObject* testObject;
49 NPObject* rememberedObject;
  /external/chromium_org/remoting/host/plugin/
host_plugin.cc 151 NPObject* GetScriptableObject() {
212 struct ScriptableNPObject : public NPObject {
221 static HostNPScriptObject* ScriptableFromObject(NPObject* obj) {
225 static NPObject* Allocate(NPP npp, NPClass* aClass) {
239 static void Deallocate(NPObject* npobj) {
247 static void Invalidate(NPObject* npobj) {
257 static bool HasMethod(NPObject* obj, NPIdentifier method_name) {
267 static bool InvokeDefault(NPObject* obj,
277 static bool Invoke(NPObject* obj,
292 static bool HasProperty(NPObject* obj, NPIdentifier property_name)
    [all...]
host_script_object.h 31 NPObject* parent,
35 // Implementations used to implement the NPObject interface.
178 void LocalizeStrings(NPObject* localize_func);
180 // Helper function for executing InvokeDefault on an NPObject that performs
184 bool LocalizeString(NPObject* localize_func, const char* tag,
187 // Helper function for executing InvokeDefault on an NPObject that performs
191 bool LocalizeStringWithSubstitution(NPObject* localize_func,
243 // Helper function for executing InvokeDefault on an NPObject, and ignoring
256 NPObject* parent_;
  /external/chromium/webkit/glue/
cpp_variant_unittest.cc 56 NPObject* MockNPAllocate(NPP npp, NPClass* aClass) {
62 return reinterpret_cast<NPObject*>(malloc(sizeof(NPObject)));
65 void MockNPDeallocate(NPObject* npobj) {
78 NPObject* MakeVoidObject() {
112 NPObject *object = MakeVoidObject();
142 NPObject *object = MakeVoidObject();
167 NPObject *object = MakeVoidObject();
208 NPObject *object = MakeVoidObject();
267 NPObject *obj = MakeVoidObject()
    [all...]
  /external/chromium_org/content/renderer/java/
java_bridge_channel.h 34 // Dummy NPObject owner Id used to track objects owned by the JavaBridge
  /external/chromium_org/third_party/npapi/npspy/common/
npn_gate.cpp 397 bool NPN_Enumerate(NPP id, NPObject* obj, NPIdentifier** identifier, uint32_t*val)
436 void NPN_SetException(NPObject*obj, const NPUTF8*message)
452 bool NPN_HasMethod(NPP id, NPObject* object, NPIdentifier identifier)
465 bool NPN_HasProperty(NPP id, NPObject* object, NPIdentifier identifier)
478 bool NPN_RemoveProperty(NPP id, NPObject* object, NPIdentifier identifier)
488 bool NPN_SetProperty(NPP id, NPObject* obj, NPIdentifier identifier, const NPVariant *variant)
498 bool NPN_GetProperty(NPP id, NPObject* obj, NPIdentifier identifier, NPVariant *variant)
508 bool NPN_Evaluate(NPP id, NPObject* obj, NPString* str, NPVariant* variant)
521 bool NPN_InvokeDefault(NPP id, NPObject* obj, const NPVariant* args, uint32_t count, NPVariant*result)
534 bool NPN_Invoke(NPP id, NPObject* obj, NPIdentifier identifier, const NPVariant *args, uint32_t count, NPVariant*result
    [all...]
  /external/chromium_org/webkit/renderer/
cpp_variant_unittest.cc 58 NPObject* MockNPAllocate(NPP npp, NPClass* aClass) {
64 return reinterpret_cast<NPObject*>(malloc(sizeof(NPObject)));
67 void MockNPDeallocate(NPObject* npobj) {
95 NPObject* MakeVoidObject() {
133 NPObject *object = MakeVoidObject();
163 NPObject *object = MakeVoidObject();
188 NPObject *object = MakeVoidObject();
229 NPObject *object = MakeVoidObject();
288 NPObject *obj = MakeVoidObject()
    [all...]
  /external/chromium_org/content/renderer/pepper/
message_channel.cc 55 // NPObject*.
56 MessageChannel* ToMessageChannel(NPObject* object) {
61 NPObject* ToPassThroughObject(NPObject* object) {
123 NPObject* MessageChannelAllocate(NPP npp, NPClass* the_class) {
127 void MessageChannelDeallocate(NPObject* object) {
133 bool MessageChannelHasMethod(NPObject* np_obj, NPIdentifier name) {
142 NPObject* passthrough = ToPassThroughObject(np_obj);
148 bool MessageChannelInvoke(NPObject* np_obj, NPIdentifier name,
165 NPObject* passthrough = ToPassThroughObject(np_obj)
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/plugin/
npupp.h 376 typedef NPObject* (* NP_LOADDS NPN_CreateObjectUPP)(NPP npp, NPClass *aClass);
383 typedef NPObject* (* NP_LOADDS NPN_RetainObjectUPP)(NPObject *obj);
390 typedef void (* NP_LOADDS NPN_ReleaseObjectUPP)(NPObject *obj);
397 typedef bool (* NP_LOADDS NPN_InvokeUPP)(NPP npp, NPObject* obj, NPIdentifier methodName, const NPVariant *args, uint32_t argCount, NPVariant *result);
404 typedef bool (* NP_LOADDS NPN_InvokeDefaultUPP)(NPP npp, NPObject* obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
411 typedef bool (* NP_LOADDS NPN_EvaluateUPP)(NPP npp, NPObject *obj, NPString *script, NPVariant *result);
418 typedef bool (* NP_LOADDS NPN_GetPropertyUPP)(NPP npp, NPObject *obj, NPIdentifier propertyName, NPVariant *result);
425 typedef bool (* NP_LOADDS NPN_SetPropertyUPP)(NPP npp, NPObject *obj, NPIdentifier propertyName, const NPVariant *value);
432 typedef bool (* NP_LOADDS NPN_RemovePropertyUPP)(NPP npp, NPObject *obj, NPIdentifier propertyName)
    [all...]

Completed in 1007 milliseconds

1 23 4 5 6 7