Home | History | Annotate | Download | only in Misc

Lines Matching refs:download

87         selector == @selector(download:willSendRequest:redirectResponse:) ||
88 selector == @selector(download:didReceiveResponse:) ||
89 selector == @selector(download:didReceiveDataOfLength:) ||
90 selector == @selector(download:shouldDecodeSourceDataOfMIMEType:) ||
91 selector == @selector(download:decideDestinationWithSuggestedFilename:) ||
92 selector == @selector(download:didCreateDestination:) ||
94 selector == @selector(download:didFailWithError:) ||
95 selector == @selector(download:shouldBeginChildDownloadOfSource:delegate:) ||
96 selector == @selector(download:didBeginChildDownload:)) {
103 - (void)downloadDidBegin:(NSURLDownload *)download
105 [realDelegate downloadDidBegin:download];
108 - (NSURLRequest *)download:(NSURLDownload *)download willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse
110 return [realDelegate download:download willSendRequest:request redirectResponse:redirectResponse];
113 - (void)download:(NSURLDownload *)download didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
124 if ([realDelegate respondsToSelector:@selector(download:didReceiveAuthenticationChallenge:)]) {
125 [realDelegate download:download didReceiveAuthenticationChallenge:challenge];
129 window = [realDelegate downloadWindowForAuthenticationSheet:(WebDownload *)download];
136 - (void)download:(NSURLDownload *)download didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
138 if ([realDelegate respondsToSelector:@selector(download:didCancelAuthenticationChallenge:)]) {
139 [realDelegate download:download didCancelAuthenticationChallenge:challenge];
145 - (void)download:(NSURLDownload *)download didReceiveResponse:(NSURLResponse *)response
147 [realDelegate download:download didReceiveResponse:response];
150 - (void)download:(NSURLDownload *)download didReceiveDataOfLength:(NSUInteger)length
152 [realDelegate download:download didReceiveDataOfLength:length];
155 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
157 return [realDelegate download:download shouldDecodeSourceDataOfMIMEType:encodingType];
160 - (void)download:(NSURLDownload *)download decideDestinationWithSuggestedFilename:(NSString *)filename
162 [realDelegate download:download decideDestinationWithSuggestedFilename:filename];
165 - (void)download:(NSURLDownload *)download didCreateDestination:(NSString *)path
167 [realDelegate download:download didCreateDestination:path];
170 - (void)downloadDidFinish:(NSURLDownload *)download
172 [realDelegate downloadDidFinish:download];
175 - (void)download:(NSURLDownload *)download didFailWithError:(NSError *)error
177 [realDelegate download:download didFailWithError:error];
180 - (NSURLRequest *)download:(NSURLDownload *)download shouldBeginChildDownloadOfSource:(NSURLRequest *)child delegate:(id *)childDelegate
182 return [realDelegate download:download shouldBeginChildDownloadOfSource:child delegate:childDelegate];
185 - (void)download:(NSURLDownload *)parent didBeginChildDownload:(NSURLDownload *)child
187 [realDelegate download:parent didBeginChildDownload:child];