OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DownloadFile
(Results
1 - 25
of
61
) sorted by null
1
2
3
/external/chromium/chrome/browser/download/
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.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_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_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_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_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_));
/external/chromium_org/content/browser/download/
download_file_factory.h
23
class
DownloadFile
;
31
virtual
DownloadFile
* 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_factory.cc
14
DownloadFile
* DownloadFileFactory::CreateFile(
mock_download_file.h
21
class MockDownloadFile : virtual public
DownloadFile
{
26
//
DownloadFile
functions.
download_file_impl.h
28
class CONTENT_EXPORT DownloadFileImpl : virtual public
DownloadFile
{
51
//
DownloadFile
functions.
90
// with
DownloadFile
and get rid of BaseFile.
download_item_impl.h
28
class
DownloadFile
;
176
virtual void Start(scoped_ptr<
DownloadFile
> download_file,
315
// Callback from file thread when we initialize the
DownloadFile
.
350
// Destroy the
DownloadFile
object. If |destroy_file| is true, the file is
351
// destroyed with it. Otherwise,
DownloadFile
::Detach() is called before
456
// Current speed. Calculated by the
DownloadFile
.
535
//
DownloadFile
associated with this download. Note that this
539
scoped_ptr<
DownloadFile
> download_file_;
/external/chromium_org/chrome/test/functional/ispy/common/
cloud_bucket.py
26
def
DownloadFile
(self, path):
mock_cloud_bucket.py
34
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.h
84
void
DownloadFile
(
/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/sync_file_system/drive_backend_v1/
api_util_interface.h
136
virtual void
DownloadFile
(const std::string& resource_id,
fake_api_util.h
80
virtual void
DownloadFile
(const std::string& resource_id,
remote_sync_delegate.cc
116
DownloadFile
(callback);
189
void RemoteSyncDelegate::
DownloadFile
(const SyncStatusCallback& callback) {
196
api_util()->
DownloadFile
(
387
DownloadFile
(callback);
remote_sync_delegate.h
58
void
DownloadFile
(const SyncStatusCallback& callback);
Completed in 137 milliseconds
1
2
3