OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CanResume
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/content/public/browser/
download_item.h
171
virtual bool
CanResume
() const = 0;
/external/chromium_org/content/public/test/
mock_download_item.h
38
MOCK_CONST_METHOD0(
CanResume
, bool());
/external/chromium/net/http/
http_cache_transaction.h
324
bool
CanResume
(bool has_data);
http_cache_transaction.cc
191
if (!
CanResume
(true))
1058
if (server_responded_206_ && !
CanResume
(false)) {
[
all
...]
/external/chromium_org/net/http/
http_cache_transaction.h
374
bool
CanResume
(bool has_data);
http_cache_transaction.cc
271
if (!
CanResume
(true))
[
all
...]
/external/chromium_org/chrome/browser/ui/webui/
downloads_dom_handler.cc
165
file_value->SetBoolean("resume", download_item->
CanResume
());
214
download_item->GetLastReason() && !download_item->
CanResume
())
/external/chromium_org/content/browser/download/
download_item_impl.h
108
virtual bool
CanResume
() const OVERRIDE;
download_item_impl.cc
482
bool DownloadItemImpl::
CanResume
() const {
511
return !
CanResume
();
[
all
...]
/external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api.cc
107
const char kNotResumable[] = "DownloadItem.
canResume
must be true";
132
const char kCanResumeKey[] = "
canResume
";
257
json->SetBoolean(kCanResumeKey, download_item->
CanResume
());
[
all
...]
/external/chromium_org/chrome/browser/download/
download_browsertest.cc
210
bool is_resumable_now = download->
CanResume
();
[
all
...]
Completed in 153 milliseconds