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

Lines Matching refs:identifier

152         didFail(m_resource->identifier(), error);
204 // If the request URL origin is not same origin with the original URL origin, set source origin to a globally unique identifier.
235 didReceiveResponse(m_resource->identifier(), response);
238 void DocumentThreadableLoader::didReceiveResponse(unsigned long identifier, const ResourceResponse& response)
246 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_document.frame(), identifier, response);
247 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, response, 0);
251 preflightFailure(identifier, response.url(), accessControlErrorDescription);
260 preflightFailure(identifier, response.url(), accessControlErrorDescription);
273 m_client->didReceiveResponse(identifier, response);
280 didReceiveData(m_resource->identifier(), data, dataLength);
283 void DocumentThreadableLoader::didReceiveData(unsigned long identifier, const char* data, int dataLength)
290 InspectorInstrumentation::didReceiveData(m_document.frame(), identifier, 0, 0, dataLength);
292 UNUSED_PARAM(identifier);
306 didFail(m_resource->identifier(), m_resource->resourceError());
308 didFinishLoading(m_resource->identifier(), m_resource->loadFinishTime());
311 void DocumentThreadableLoader::didFinishLoading(unsigned long identifier, double finishTime)
315 InspectorInstrumentation::didFinishLoading(m_document.frame(), m_document.frame()->loader().documentLoader(), identifier, finishTime);
321 m_client->didFinishLoading(identifier, finishTime);
324 void DocumentThreadableLoader::didFail(unsigned long identifier, const ResourceError& error)
328 InspectorInstrumentation::didFailLoading(m_document.frame(), m_document.frame()->loader().documentLoader(), identifier, error);
330 UNUSED_PARAM(identifier);
349 void DocumentThreadableLoader::preflightFailure(unsigned long identifier, const String& url, const String& errorDescription)
354 InspectorInstrumentation::didFailLoading(m_document.frame(), m_document.frame()->loader().documentLoader(), identifier, error);
356 UNUSED_PARAM(identifier);
390 unsigned long identifier = m_resource->loader()->identifier();
391 InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClient(&m_document, identifier, m_client);
403 unsigned long identifier = std::numeric_limits<unsigned long>::max();
405 identifier = m_document.frame()->loader().loadResourceSynchronously(request, m_options.allowCredentials(), m_options.clientCredentialPolicy(), error, response, data);
407 InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClient(&m_document, identifier, m_client);
413 didReceiveResponse(identifier, response);
414 didFinishLoading(identifier, 0.0);
429 didReceiveResponse(identifier, response);
433 didReceiveData(identifier, bytes, len);
435 didFinishLoading(identifier, 0.0);