• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebCore-7600.1.25/platform/network/mac/

Lines Matching refs:connection

101 - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSURLRequest *)newRequest redirectResponse:(NSURLResponse *)redirectResponse
104 UNUSED_PARAM(connection);
106 redirectResponse = synthesizeRedirectResponseIfNecessary(connection, newRequest, redirectResponse);
114 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:%d, Location:<%@>", m_handle, connection, [newRequest description], static_cast<int>([(id)redirectResponse statusCode]), [[(id)redirectResponse allHeaderFields] objectForKey:@"Location"]);
116 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:non-HTTP", m_handle, connection, [newRequest description]);
137 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
140 UNUSED_PARAM(connection);
142 LOG(Network, "Handle %p delegate connection:%p didReceiveAuthenticationChallenge:%p", m_handle, connection, challenge);
153 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
158 UNUSED_PARAM(connection);
160 LOG(Network, "Handle %p delegate connection:%p didCancelAuthenticationChallenge:%p", m_handle, connection, challenge);
170 - (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
173 UNUSED_PARAM(connection);
175 LOG(Network, "Handle %p delegate connection:%p canAuthenticateAgainstProtectionSpace:%@://%@:%u realm:%@ method:%@ %@%@", m_handle, connection, [protectionSpace protocol], [protectionSpace host], [protectionSpace port], [protectionSpace realm], [protectionSpace authenticationMethod], [protectionSpace isProxy] ? @"proxy:" : @"", [protectionSpace isProxy] ? [protectionSpace proxyType] : @"");
193 - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)r
197 LOG(Network, "Handle %p delegate connection:%p didReceiveResponse:%p (HTTP status %d, reported MIMEType '%s')", m_handle, connection, r, [r respondsToSelector:@selector(statusCode)] ? [(id)r statusCode] : 0, [[r MIMEType] UTF8String]);
217 ResourceHandle::getConnectionTimingData(connection, resourceResponse.resourceLoadTiming());
219 UNUSED_PARAM(connection);
228 - (void)connection:(NSURLConnection *)connection didReceiveDataArray:(NSArray *)dataArray
231 UNUSED_PARAM(connection);
233 LOG(Network, "Handle %p delegate connection:%p didReceiveDataArray:%p arraySize:%d", m_handle, connection, dataArray, [dataArray count]);
248 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data lengthReceived:(long long)lengthReceived
251 UNUSED_PARAM(connection);
254 LOG(Network, "Handle %p delegate connection:%p didReceiveData:%p lengthReceived:%lld", m_handle, connection, data, lengthReceived);
270 - (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite
273 UNUSED_PARAM(connection);
276 LOG(Network, "Handle %p delegate connection:%p didSendBodyData:%d totalBytesWritten:%d totalBytesExpectedToWrite:%d", m_handle, connection, bytesWritten, totalBytesWritten, totalBytesExpectedToWrite);
285 - (void)connectionDidFinishLoading:(NSURLConnection *)connection
288 UNUSED_PARAM(connection);
290 LOG(Network, "Handle %p delegate connectionDidFinishLoading:%p", m_handle, connection);
300 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
303 UNUSED_PARAM(connection);
305 LOG(Network, "Handle %p delegate connection:%p didFailWithError:%@", m_handle, connection, error);
316 - (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse
319 UNUSED_PARAM(connection);
321 LOG(Network, "Handle %p delegate connection:%p willCacheResponse:%p", m_handle, connection, cachedResponse);
343 - (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)connection
346 UNUSED_PARAM(connection);