Home | History | Annotate | Download | only in Plugins

Lines Matching refs:request

187 - (NPError)loadRequest:(NSMutableURLRequest *)request inTarget:(const char *)cTarget withNotifyData:(void *)notifyData sendNotification:(BOOL)sendNotification;
1169 NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:_sourceURL.get()];
1170 [request _web_setHTTPReferrer:core([self webFrame])->loader()->outgoingReferrer()];
1171 [self loadRequest:request inTarget:nil withNotifyData:nil sendNotification:NO];
1532 _manualStream->setRequestURL([[[self dataSource] request] URL]);
1583 NSURL *URL = [[JSPluginRequest request] URL];
1632 [_pluginPackage.get() pluginFuncs]->urlnotify(plugin, [[[pluginRequest request] URL] _web_URLCString], reason, [pluginRequest notifyData]);
1650 NSURLRequest *request = [pluginRequest request];
1654 NSURL *URL = [request URL];
1676 [_pluginPackage.get() pluginFuncs]->urlnotify(plugin, [[[pluginRequest request] URL] _web_URLCString], NPERR_GENERIC_ERROR, [pluginRequest notifyData]);
1693 [frame loadRequest:request];
1708 - (NPError)loadRequest:(NSMutableURLRequest *)request inTarget:(const char *)cTarget withNotifyData:(void *)notifyData sendNotification:(BOOL)sendNotification
1710 NSURL *URL = [request URL];
1739 // Don't allow a JavaScript request from a standalone plug-in that is self-targetted
1749 // Make when targetting a frame or evaluating a JS string, perform the request after a delay because we don't
1750 // want to potentially kill the plug-in inside of its URL request.
1761 WebPluginRequest *pluginRequest = [[WebPluginRequest alloc] initWithRequest:request
1769 RefPtr<WebNetscapePluginStream> stream = WebNetscapePluginStream::create(request, plugin, sendNotification, notifyData);
1782 NSMutableURLRequest *request = [self requestWithURLCString:URLCString];
1783 return [self loadRequest:request inTarget:cTarget withNotifyData:notifyData sendNotification:YES];
1790 NSMutableURLRequest *request = [self requestWithURLCString:URLCString];
1791 return [self loadRequest:request inTarget:cTarget withNotifyData:NULL sendNotification:NO];
1835 NSMutableURLRequest *request = [self requestWithURLCString:URLCString];
1836 [request setHTTPMethod:@"POST"];
1859 [request setAllHTTPHeaderFields:header];
1872 [request setCachePolicy:NSURLRequestReloadIgnoringCacheData];
1873 [request setHTTPBody:postData];
1875 return [self loadRequest:request inTarget:target withNotifyData:notifyData sendNotification:sendNotification];