HomeSort by relevance Sort by last modified time
    Searched full:downloadfile (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/chromium/chrome/browser/download/
download_file.cc 16 DownloadFile::DownloadFile(const DownloadCreateInfo* info,
31 DownloadFile::~DownloadFile() {
35 void DownloadFile::CancelDownloadRequest(ResourceDispatcherHost* rdh) {
45 DownloadManager* DownloadFile::GetDownloadManager() {
50 std::string DownloadFile::DebugString() const {
download_file.h 23 // cancelled, the DownloadFile is destroyed.
24 class DownloadFile : public BaseFile {
26 DownloadFile(const DownloadCreateInfo* info,
28 virtual ~DownloadFile();
52 DISALLOW_COPY_AND_ASSIGN(DownloadFile);
download_file_unittest.cc 57 virtual void CreateDownloadFile(scoped_ptr<DownloadFile>* file, int offset) {
63 file->reset(new DownloadFile(&info, download_manager_));
66 virtual void DestroyDownloadFile(scoped_ptr<DownloadFile>* file, int offset) {
79 // Make sure the mock BrowserThread outlives the DownloadFile to satisfy
84 void AppendDataToFile(scoped_ptr<DownloadFile>* file,
102 // DownloadFile instance we are testing.
103 scoped_ptr<DownloadFile> download_file_;
109 // File thread to satisfy debug checks in DownloadFile.
download_file_manager.cc 78 scoped_ptr<DownloadFile>
79 download_file(new DownloadFile(info, download_manager));
117 DownloadFile* DownloadFileManager::GetDownloadFile(int id) {
140 DownloadFile* download_file = i->second;
188 // DownloadFile has been deleted.
197 DownloadFile* download = GetDownloadFile(id);
217 DownloadFile* download = GetDownloadFile(id);
252 DownloadFile* download = it->second;
266 DownloadFile* download_file = downloads_[id];
281 std::set<DownloadFile*> to_remove
    [all...]
download_file_manager.h 5 // The DownloadFileManager owns a set of DownloadFile objects, each of which
55 class DownloadFile;
138 // Creates DownloadFile on FILE thread and continues starting the download
149 DownloadFile* GetDownloadFile(int id);
159 // Unique ID for each DownloadFile.
162 typedef base::hash_map<int, DownloadFile*> DownloadFileMap;
download_manager_unittest.cc 52 void AddDownloadToFileManager(int id, DownloadFile* download_file) {
200 class MockDownloadFile : public DownloadFile {
203 : DownloadFile(info, manager), renamed_count_(0) { }
314 DownloadFile* download_file(new DownloadFile(info, download_manager_));
567 DownloadFile* download_file(
568 new DownloadFile(info, download_manager_));
base_file.h 25 // for DownloadFile and SaveFile, which keep more state information.
  /external/chromium_org/content/browser/download/
download_file_factory.h 23 class DownloadFile;
31 virtual DownloadFile* CreateFile(
mock_download_file.h 21 class MockDownloadFile : virtual public DownloadFile {
26 // DownloadFile functions.
download_file_factory.cc 14 DownloadFile* DownloadFileFactory::CreateFile(
mock_download_file.cc 14 void SuccessRun(const DownloadFile::InitializeCallback& callback) {
download_file.h 23 // cancelled, the DownloadFile is destroyed.
24 class CONTENT_EXPORT DownloadFile {
40 virtual ~DownloadFile() {}
download_file_impl.h 28 class CONTENT_EXPORT DownloadFileImpl : virtual public DownloadFile {
51 // DownloadFile functions.
90 // with DownloadFile and get rid of BaseFile.
download_net_log_parameters.h 72 // Returns NetLog parameters when a DownloadFile is opened.
77 // Returns NetLog parameters when a DownloadFile is opened.
82 // Returns NetLog parameters when a DownloadFile is renamed.
  /external/chromium_org/content/public/test/
test_file_error_injector.cc 49 // DownloadFile interface.
89 const DownloadFile::InitializeCallback original_callback,
96 const DownloadFile::RenameCompletionCallback original_callback,
128 // DownloadItem schedules a DownloadFile to be destroyed and creates another
130 // for the old DownloadFile is run before the ConstructionCallback for the
131 // next DownloadFile.
264 virtual DownloadFile* CreateFile(
298 DownloadFile* DownloadFileWithErrorsFactory::CreateFile(
  /external/chromium_org/chrome/test/functional/ispy/common/
mock_cloud_bucket.py 34 def DownloadFile(self, path):
cloud_bucket.py 26 def DownloadFile(self, path):
  /external/chromium_org/chrome/test/functional/ispy/server/
image_handler.py 33 image = bucket.DownloadFile(file_path)
gs_bucket.py 36 def DownloadFile(self, path):
  /external/chromium_org/chrome/test/functional/ispy/client/
chrome_utils_unittest.py 45 versions = json.loads(self.cloud_bucket.DownloadFile('versions.json'))
boto_bucket.py 52 def DownloadFile(self, path):
  /external/chromium_org/chrome/browser/media_galleries/mac/
mtp_device_delegate_impl_mac.mm 46 void DownloadFile(const std::string& name, const base::FilePath& local_path);
84 void MTPDeviceDelegateImplMac::DeviceListener::DownloadFile(
87 [camera_device_ downloadFile:name localPath:local_path];
191 base::Bind(&MTPDeviceDelegateImplMac::DownloadFile,
257 void MTPDeviceDelegateImplMac::DownloadFile(
281 camera_interface_->DownloadFile(relative_path.value(), local_path);
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
remote_to_local_syncer.h 117 // - Dispatch to DownloadFile.
119 // - Dispatch to DownloadFile if the local file is a regular file.
175 void DownloadFile(const SyncStatusCallback& callback);
  /external/chromium_org/chrome/browser/storage_monitor/
image_capture_device_manager_unittest.mm 350 TEST_F(ImageCaptureDeviceManagerTest, DownloadFile) {
376 [camera downloadFile:std::string("nonexistent") localPath:temp_file];
387 [camera downloadFile:kTestFileName localPath:temp_file];
424 [camera downloadFile:("dir/" + kTestFileName) localPath:temp_file];
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
remote_sync_delegate.cc 116 DownloadFile(callback);
189 void RemoteSyncDelegate::DownloadFile(const SyncStatusCallback& callback) {
196 api_util()->DownloadFile(
387 DownloadFile(callback);

Completed in 845 milliseconds

1 2 3 4