Home | History | Annotate | Download | only in Plugins

Lines Matching refs:url

82 NPError NPN_GetURLNotify(NPP instance, const char* URL, const char* target, void* notifyData)
84 return [pluginViewForInstance(instance) getURLNotify:URL target:target notifyData:notifyData];
87 NPError NPN_GetURL(NPP instance, const char* URL, const char* target)
89 return [pluginViewForInstance(instance) getURL:URL target:target];
92 NPError NPN_PostURLNotify(NPP instance, const char* URL, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData)
94 return [pluginViewForInstance(instance) postURLNotify:URL target:target len:len buf:buf file:file notifyData:notifyData];
97 NPError NPN_PostURL(NPP instance, const char* URL, const char* target, uint32_t len, const char* buf, NPBool file)
99 return [pluginViewForInstance(instance) postURL:URL target:target len:len buf:buf file:file];
194 NPError NPN_GetValueForURL(NPP instance, NPNURLVariable variable, const char* url, char** value, uint32_t* len)
196 return [pluginViewForInstance(instance) getVariable:variable forURL:url value:value length:len];
199 NPError NPN_SetValueForURL(NPP instance, NPNURLVariable variable, const char* url, const char* value, uint32_t len)
201 return [pluginViewForInstance(instance) setVariable:variable forURL:url value:value length:len];
220 uint32_t WKN_CheckIfAllowedToLoadURL(NPP instance, const char* url, const char* frame, void (*callbackFunc)(NPP npp, uint32_t, NPBool, void*), void* context)
222 return [pluginViewForInstance(instance) checkIfAllowedToLoadURL:url frame:frame callbackFunc:callbackFunc context:context];
230 char* WKN_ResolveURL(NPP instance, const char* url, const char* target)
232 return [pluginViewForInstance(instance) resolveURL:url forTarget:target];