• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebCore-7600.1.25/loader/

Lines Matching refs:identifier

56     didReceiveAuthenticationChallenge(loader->identifier(), loader->documentLoader(), currentWebChallenge);
59 void ResourceLoadNotifier::didReceiveAuthenticationChallenge(unsigned long identifier, DocumentLoader* loader, const AuthenticationChallenge& currentWebChallenge)
61 m_frame.loader().client().dispatchDidReceiveAuthenticationChallenge(loader, identifier, currentWebChallenge);
66 didCancelAuthenticationChallenge(loader->identifier(), loader->documentLoader(), currentWebChallenge);
69 void ResourceLoadNotifier::didCancelAuthenticationChallenge(unsigned long identifier, DocumentLoader* loader, const AuthenticationChallenge& currentWebChallenge)
71 m_frame.loader().client().dispatchDidCancelAuthenticationChallenge(loader, identifier, currentWebChallenge);
78 dispatchWillSendRequest(loader->documentLoader(), loader->identifier(), clientRequest, redirectResponse);
86 page->progress().incrementProgress(loader->identifier(), r);
88 dispatchDidReceiveResponse(loader->documentLoader(), loader->identifier(), r, loader);
94 page->progress().incrementProgress(loader->identifier(), dataLength);
96 dispatchDidReceiveData(loader->documentLoader(), loader->identifier(), data, dataLength, encodedDataLength);
102 page->progress().completeProgress(loader->identifier());
103 dispatchDidFinishLoading(loader->documentLoader(), loader->identifier(), finishTime);
109 page->progress().completeProgress(loader->identifier());
112 m_frame.loader().client().dispatchDidFailLoading(loader->documentLoader(), loader->identifier(), error);
114 InspectorInstrumentation::didFailLoading(&m_frame, loader->documentLoader(), loader->identifier(), error);
117 void ResourceLoadNotifier::assignIdentifierToInitialRequest(unsigned long identifier, DocumentLoader* loader, const ResourceRequest& request)
119 m_frame.loader().client().assignIdentifierToInitialRequest(identifier, loader, request);
122 void ResourceLoadNotifier::dispatchWillSendRequest(DocumentLoader* loader, unsigned long identifier, ResourceRequest& request, const ResourceResponse& redirectResponse)
133 m_frame.loader().client().dispatchWillSendRequest(loader, identifier, request, redirectResponse);
139 InspectorInstrumentation::willSendRequest(&m_frame, identifier, loader, request, redirectResponse);
150 void ResourceLoadNotifier::dispatchDidReceiveResponse(DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r, ResourceLoader* resourceLoader)
152 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(&m_frame, identifier, r);
153 m_frame.loader().client().dispatchDidReceiveResponse(loader, identifier, r);
154 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, r, resourceLoader);
157 void ResourceLoadNotifier::dispatchDidReceiveData(DocumentLoader* loader, unsigned long identifier, const char* data, int dataLength, int encodedDataLength)
159 m_frame.loader().client().dispatchDidReceiveContentLength(loader, identifier, dataLength);
161 InspectorInstrumentation::didReceiveData(&m_frame, identifier, data, dataLength, encodedDataLength);
164 void ResourceLoadNotifier::dispatchDidFinishLoading(DocumentLoader* loader, unsigned long identifier, double finishTime)
166 m_frame.loader().client().dispatchDidFinishLoading(loader, identifier);
168 InspectorInstrumentation::didFinishLoading(&m_frame, loader, identifier, finishTime);
171 void ResourceLoadNotifier::dispatchDidFailLoading(DocumentLoader* loader, unsigned long identifier, const ResourceError& error)
173 m_frame.loader().client().dispatchDidFailLoading(loader, identifier, error);
175 InspectorInstrumentation::didFailLoading(&m_frame, loader, identifier, error);
178 void ResourceLoadNotifier::sendRemainingDelegateMessages(DocumentLoader* loader, unsigned long identifier, const ResourceRequest& request, const ResourceResponse& response, const char* data, int dataLength, int encodedDataLength, const ResourceError& error)
184 dispatchDidFailLoading(loader, identifier, error);
189 dispatchDidReceiveResponse(loader, identifier, response);
192 dispatchDidReceiveData(loader, identifier, data, dataLength, encodedDataLength);
195 dispatchDidFinishLoading(loader, identifier, 0);
197 dispatchDidFailLoading(loader, identifier, error);