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

Lines Matching refs:connection

63 - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSURLRequest *)newRequest redirectResponse:(NSURLResponse *)redirectResponse
65 UNUSED_PARAM(connection);
70 redirectResponse = synthesizeRedirectResponseIfNecessary(connection, newRequest, redirectResponse);
78 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"]);
80 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:non-HTTP", m_handle, connection, [newRequest description]);
90 - (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)connection
92 UNUSED_PARAM(connection);
94 LOG(Network, "Handle %p delegate connectionShouldUseCredentialStorage:%p", m_handle, connection);
106 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
108 UNUSED_PARAM(connection);
110 LOG(Network, "Handle %p delegate connection:%p didReceiveAuthenticationChallenge:%p", m_handle, connection, challenge);
119 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
123 UNUSED_PARAM(connection);
125 LOG(Network, "Handle %p delegate connection:%p didCancelAuthenticationChallenge:%p", m_handle, connection, challenge);
133 - (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace
135 UNUSED_PARAM(connection);
137 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] : @"");
146 - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)r
149 UNUSED_PARAM(connection);
152 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]);
168 m_handle->setQuickLookHandle(QuickLookHandle::create(m_handle, connection, r, self));
175 ResourceHandle::getConnectionTimingData(connection, resourceResponse.resourceLoadTiming());
177 UNUSED_PARAM(connection);
184 - (void)connection:(NSURLConnection *)connection didReceiveDataArray:(NSArray *)dataArray
186 UNUSED_PARAM(connection);
187 LOG(Network, "Handle %p delegate connection:%p didReceiveDataArray:%p arraySize:%d", m_handle, connection, dataArray, [dataArray count]);
205 - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data lengthReceived:(long long)lengthReceived
207 UNUSED_PARAM(connection);
210 LOG(Network, "Handle %p delegate connection:%p didReceiveData:%p lengthReceived:%lld", m_handle, connection, data, lengthReceived);
234 - (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite
236 UNUSED_PARAM(connection);
239 LOG(Network, "Handle %p delegate connection:%p didSendBodyData:%d totalBytesWritten:%d totalBytesExpectedToWrite:%d", m_handle, connection, bytesWritten, totalBytesWritten, totalBytesExpectedToWrite);
246 - (void)connectionDidFinishLoading:(NSURLConnection *)connection
248 UNUSED_PARAM(connection);
250 LOG(Network, "Handle %p delegate connectionDidFinishLoading:%p", m_handle, connection);
263 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
265 UNUSED_PARAM(connection);
267 LOG(Network, "Handle %p delegate connection:%p didFailWithError:%@", m_handle, connection, error);
281 - (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse
283 LOG(Network, "Handle %p delegate connection:%p willCacheResponse:%p", m_handle, connection, cachedResponse);
285 UNUSED_PARAM(connection);