Home
last modified time | relevance | path

Searched refs:np_obj (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/content/renderer/browser_plugin/
Dbrowser_plugin_bindings.cc101 bool BrowserPluginBindingsHasMethod(NPObject* np_obj, NPIdentifier name) { in BrowserPluginBindingsHasMethod() argument
102 if (!np_obj) in BrowserPluginBindingsHasMethod()
105 BrowserPluginBindings* bindings = GetBindings(np_obj); in BrowserPluginBindingsHasMethod()
112 bool BrowserPluginBindingsInvoke(NPObject* np_obj, NPIdentifier name, in BrowserPluginBindingsInvoke() argument
115 if (!np_obj) in BrowserPluginBindingsInvoke()
118 BrowserPluginBindings* bindings = GetBindings(np_obj); in BrowserPluginBindingsInvoke()
125 bool BrowserPluginBindingsInvokeDefault(NPObject* np_obj, in BrowserPluginBindingsInvokeDefault() argument
133 bool BrowserPluginBindingsHasProperty(NPObject* np_obj, NPIdentifier name) { in BrowserPluginBindingsHasProperty() argument
134 if (!np_obj) in BrowserPluginBindingsHasProperty()
137 BrowserPluginBindings* bindings = GetBindings(np_obj); in BrowserPluginBindingsHasProperty()
[all …]
Dbrowser_plugin_bindings.h47 bool SetProperty(NPObject* np_obj,
51 bool RemoveProperty(NPObject *np_obj, NPIdentifier name);
/external/chromium_org/content/renderer/pepper/
Dmessage_channel.cc133 bool MessageChannelHasMethod(NPObject* np_obj, NPIdentifier name) { in MessageChannelHasMethod() argument
134 if (!np_obj) in MessageChannelHasMethod()
142 NPObject* passthrough = ToPassThroughObject(np_obj); in MessageChannelHasMethod()
148 bool MessageChannelInvoke(NPObject* np_obj, NPIdentifier name, in MessageChannelInvoke() argument
151 if (!np_obj) in MessageChannelInvoke()
156 MessageChannel* message_channel = ToMessageChannel(np_obj); in MessageChannelInvoke()
165 NPObject* passthrough = ToPassThroughObject(np_obj); in MessageChannelInvoke()
173 bool MessageChannelInvokeDefault(NPObject* np_obj, in MessageChannelInvokeDefault() argument
177 if (!np_obj) in MessageChannelInvokeDefault()
181 NPObject* passthrough = ToPassThroughObject(np_obj); in MessageChannelInvokeDefault()
[all …]
/external/chromium_org/webkit/renderer/
Dcpp_bound_class.cc142 /* static */ void CppNPObject::deallocate(NPObject* np_obj) { in deallocate() argument
143 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in deallocate()
147 /* static */ bool CppNPObject::hasMethod(NPObject* np_obj, in hasMethod() argument
149 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in hasMethod()
153 /* static */ bool CppNPObject::hasProperty(NPObject* np_obj, in hasProperty() argument
155 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in hasProperty()
159 /* static */ bool CppNPObject::invoke(NPObject* np_obj, NPIdentifier ident, in invoke() argument
162 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in invoke()
166 /* static */ bool CppNPObject::getProperty(NPObject* np_obj, in getProperty() argument
169 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in getProperty()
[all …]
/external/chromium/webkit/glue/
Dcpp_bound_class.cc138 /* static */ void CppNPObject::deallocate(NPObject* np_obj) { in deallocate() argument
139 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in deallocate()
143 /* static */ bool CppNPObject::hasMethod(NPObject* np_obj, in hasMethod() argument
145 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in hasMethod()
149 /* static */ bool CppNPObject::hasProperty(NPObject* np_obj, in hasProperty() argument
151 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in hasProperty()
155 /* static */ bool CppNPObject::invoke(NPObject* np_obj, NPIdentifier ident, in invoke() argument
158 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in invoke()
162 /* static */ bool CppNPObject::getProperty(NPObject* np_obj, in getProperty() argument
165 CppNPObject* obj = reinterpret_cast<CppNPObject*>(np_obj); in getProperty()
[all …]