Lines Matching refs:url
425 NPError NetscapePluginInstanceProxy::loadURL(const char* url, const char* target, const char* postData, uint32_t postLen, LoadURLFlags flags, uint32_t& streamID)
427 if (!url)
430 NSMutableURLRequest *request = [m_pluginView requestWithURLCString:url];
436 // If we're posting a file, buf is either a file URL or a path to the file.
506 NSURL *URL = [request URL];
507 NSString *JSString = [URL _webkit_scriptIfJavaScriptURL];
567 NSURL *URL = [pluginRequest->request() URL];
568 NSString *JSString = [URL _webkit_scriptIfJavaScriptURL];
586 RetainPtr<NSURLResponse> response(AdoptNS, [[NSURLResponse alloc] initWithURL:URL
612 NSURL *URL = [request URL];
614 if (!URL)
636 NSString *JSString = [URL _webkit_scriptIfJavaScriptURL];
643 if (!SecurityOrigin::canLoad(URL, String(), core([m_pluginView webFrame])->document()))
652 // want to potentially kill the plug-in inside of its URL request.
1353 NSURL *url = [m_pluginView URLWithCString:urlData];
1354 if (!url)
1358 String cookieString = cookies(frame->document(), url);
1377 NSURL *url = [m_pluginView URLWithCString:urlData];
1378 url)
1386 WebCore::setCookies(frame->document(), url, cookieString);
1397 NSURL *url = [m_pluginView URLWithCString:urlData];
1398 if (!url)
1401 WebCore::CString proxyStringUTF8 = proxiesForURL(url);
1438 uint32_t NetscapePluginInstanceProxy::checkIfAllowedToLoadURL(const char* url, const char* target)
1450 WebPluginContainerCheck *check = [WebPluginContainerCheck checkWithRequest:[m_pluginView requestWithURLCString:url]
1480 void NetscapePluginInstanceProxy::resolveURL(const char* url, const char* target, data_t& resolvedURLData, mach_msg_type_number_t& resolvedURLLength)
1484 WebCore::CString resolvedURL = [m_pluginView resolvedURLStringForURL:url target:target];