/external/chromium/chrome/browser/download/ |
download_item_model.cc | 87 case DownloadItem::INTERRUPTED: 131 case DownloadItem::INTERRUPTED:
|
download_manager_unittest.cc | 441 EXPECT_EQ(DownloadItem::INTERRUPTED, download->state()); 443 EXPECT_TRUE(observer->hit_state(DownloadItem::INTERRUPTED)); 452 EXPECT_EQ(DownloadItem::INTERRUPTED, download->state()); 454 EXPECT_TRUE(observer->hit_state(DownloadItem::INTERRUPTED)); 509 EXPECT_FALSE(observer->hit_state(DownloadItem::INTERRUPTED)); 590 EXPECT_FALSE(observer->hit_state(DownloadItem::INTERRUPTED));
|
download_item.cc | 85 case DownloadItem::INTERRUPTED: 86 return "INTERRUPTED"; 397 void DownloadItem::Interrupted(int64 size, int os_error) { 400 state_ = INTERRUPTED; 624 // TODO(ahendrickson) -- Move |INTERRUPTED| from |IsCancelled()| to 625 // |IsPartialDownload()|, when resuming interrupted downloads is implemented. 635 return (state_ == CANCELLED) || (state_ == INTERRUPTED); 639 return (state_ == INTERRUPTED);
|
download_item.h | 55 // This state indicates that the download has been interrupted. 56 INTERRUPTED 169 void Interrupted(int64 size, int os_error); 234 // Returns true if the download has been cancelled or was interrupted. 237 // Returns true if the download was interrupted.
|
/external/chromium_org/chrome/browser/download/ |
download_item_model_unittest.cc | 97 DownloadItem::INTERRUPTED)); 117 // are in the INTERRUPTED state. 185 // the INTERRUPTED state. 190 // Expected tooltip text. The tooltip text for interrupted downloads 392 { DownloadItem::INTERRUPTED, false, false, false, false}, 393 { DownloadItem::INTERRUPTED, false, true , false, false}, 394 { DownloadItem::INTERRUPTED, true , false, false, false}, 395 { DownloadItem::INTERRUPTED, true , true , false, false}
|
download_item_model.cc | 258 if (download_->GetState() != DownloadItem::INTERRUPTED || 282 case DownloadItem::INTERRUPTED: { 346 if (download_->GetState() == DownloadItem::INTERRUPTED && 518 case DownloadItem::INTERRUPTED: 519 // Interrupted or cancelled downloads should remain on the shelf.
|
download_path_reservation_tracker.cc | 312 case DownloadItem::INTERRUPTED: 329 // Items should be COMPLETE/INTERRUPTED/CANCELLED before being destroyed.
|
download_shelf_context_menu.cc | 67 else if (download_item_->GetState() == DownloadItem::INTERRUPTED)
|
/external/chromium_org/content/public/browser/ |
download_item.h | 63 // This state indicates that the download has been interrupted. 64 INTERRUPTED, 126 // Resume a download that has been paused or interrupted. Will have no effect 142 // in-progress or interrupted, then the intermediate file will also be 169 // an in-progress download was paused or if an interrupted download requires 174 // completed downloads, cancelled downloads, and interrupted downloads that 201 // download was interrupted. 207 // download is interrupted.
|
/external/chromium_org/content/browser/download/ |
download_item_impl_unittest.cc | 140 new_state == DownloadItem::INTERRUPTED) { 143 if (last_state_ == DownloadItem::INTERRUPTED && 435 CleanupItem(item, download_file, DownloadItem::INTERRUPTED); 459 CleanupItem(item, download_file, DownloadItem::INTERRUPTED); 523 CleanupItem(item, mock_download_file, DownloadItem::INTERRUPTED); 704 // download item is in an interrupted state. 728 TEST_F(DownloadItemTest, Interrupted) { 740 EXPECT_EQ(DownloadItem::INTERRUPTED, item->GetState()); 750 // the download to be marked as interrupted until after the intermediate rename. 776 EXPECT_EQ(DownloadItem::INTERRUPTED, item->GetState()) [all...] |
download_browsertest.cc | 656 EXPECT_EQ(DownloadItem::INTERRUPTED, download->GetState()); [all...] |
drag_download_file.cc | 111 state == DownloadItem::INTERRUPTED) {
|
download_item_impl.cc | 406 // Remove the intermediate file if we are cancelling an interrupted download. [all...] |
/libcore/luni/src/main/java/java/util/concurrent/ |
FutureTask.java | 61 * NEW -> INTERRUPTING -> INTERRUPTED 70 private static final int INTERRUPTED = 6; 147 UNSAFE.putOrderedInt(this, stateOffset, INTERRUPTED); 309 // assert state == INTERRUPTED; 317 // Thread.interrupted(); 373 if (Thread.interrupted()) { 405 * Tries to unlink a timed-out or interrupted wait node to avoid
|
/external/chromium/chrome/browser/history/ |
download_database.cc | 196 statement.BindInt(4, DownloadItem::INTERRUPTED);
|
/external/chromium_org/chrome/browser/plugins/ |
plugin_installer.cc | 95 case DownloadItem::INTERRUPTED: {
|
/external/smack/src/com/kenai/jbosh/ |
BOSHClient.java | 116 * Message to use for interrupted exceptions. 118 private static final String INTERRUPTED = "Interrupted"; 632 LOG.log(Level.FINEST, INTERRUPTED, intx); 824 LOG.log(Level.FINEST, INTERRUPTED, intx); [all...] |
/external/chromium_org/chrome/browser/chromeos/drive/ |
download_handler.cc | 256 case DownloadItem::INTERRUPTED: 257 // Interrupted downloads can be resumed. Keep the Drive user data around
|
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/ |
write_from_url_operation.cc | 160 } else if (download->GetState() == content::DownloadItem::INTERRUPTED) {
|
/external/chromium_org/chrome/browser/history/ |
download_database.cc | 49 "state INTEGER NOT NULL," // 1=complete, 4=interrupted 126 case DownloadItem::INTERRUPTED: return DownloadDatabase::kStateInterrupted; 142 case DownloadDatabase::kStateInterrupted: return DownloadItem::INTERRUPTED;
|
/external/chromium_org/chrome/browser/ui/gtk/download/ |
download_shelf_gtk.cc | 233 state == DownloadItem::INTERRUPTED;
|
/external/chromium_org/content/browser/indexed_db/ |
indexed_db_internals_ui.cc | 319 case DownloadItem::INTERRUPTED: {
|
/external/chromium_org/content/public/test/ |
download_test_observer.cc | 308 return download->GetState() == DownloadItem::INTERRUPTED;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
regrtest.py | 212 INTERRUPTED = -4 356 result = INTERRUPTED, e.__class__.__name__ 376 interrupted = False 546 if result[0] == INTERRUPTED: 551 interrupted = True 573 interrupted = True 591 if interrupted: 594 print "Test suite interrupted by signal SIGINT." 599 if not bad and not skipped and not interrupted and len(good) > 1: 663 sys.exit(len(bad) > 0 or interrupted) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
regrtest.py | 212 INTERRUPTED = -4 356 result = INTERRUPTED, e.__class__.__name__ 376 interrupted = False 546 if result[0] == INTERRUPTED: 551 interrupted = True 573 interrupted = True 591 if interrupted: 594 print "Test suite interrupted by signal SIGINT." 599 if not bad and not skipped and not interrupted and len(good) > 1: 663 sys.exit(len(bad) > 0 or interrupted) [all...] |