Lines Matching full:m_delegate
76 m_delegate = delegate ? delegate : DefaultDownloadDelegate::sharedInstance();
107 m_delegate = delegate ? delegate : DefaultDownloadDelegate::sharedInstance();
108 LOG_ERROR("Delegate is %p", m_delegate.get());
139 m_delegate = delegate;
140 LOG(Download, "Delegate is %p", m_delegate.get());
177 m_delegate = delegate;
178 LOG(Download, "Delegate is %p", m_delegate.get());
315 m_delegate->didFailWithError(this, webError.get());
359 if (FAILED(m_delegate->didBegin(this)))
369 if (FAILED(m_delegate->willSendRequest(this, webRequest.get(), webResponse.get(), &finalRequest)))
397 if (SUCCEEDED(m_delegate->didReceiveAuthenticationChallenge(this, webChallenge.get())))
406 if (FAILED(m_delegate->didReceiveResponse(this, webResponse.get())))
413 if (FAILED(m_delegate->willResumeWithResponse(this, webResponse.get(), fromByte)))
426 if (FAILED(m_delegate->didReceiveDataOfLength(this, length)))
433 if (FAILED(m_delegate->shouldDecodeSourceDataOfMIMEType(this, BString(mimeType), &result))) {
442 if (FAILED(m_delegate->decideDestinationWithSuggestedFilename(this, BString(name))))
461 if (FAILED(m_delegate->didCreateDestination(this, path)))
482 if (FAILED(m_delegate->decideDestinationWithSuggestedFilename(this, destinationBSTR)))
485 // The call to m_delegate->decideDestinationWithSuggestedFilename() should have changed our destination, so we'll try the move
494 m_delegate->didCreateDestination(this, bundleBSTR);
497 m_delegate->didCreateDestination(this, finalDestinationBSTR);
503 if (FAILED(m_delegate->didFinish(this)))
512 if (FAILED(m_delegate->didFailWithError(this, webError.get())))