HomeSort by relevance Sort by last modified time
    Searched refs:INTERRUPTED (Results 1 - 25 of 44) sorted by null

1 2

  /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 95 DownloadItem::INTERRUPTED));
115 // are in the INTERRUPTED state.
183 // the INTERRUPTED state.
188 // Expected tooltip text. The tooltip text for interrupted downloads
387 { DownloadItem::INTERRUPTED, false, false, false, false},
388 { DownloadItem::INTERRUPTED, false, true , false, false},
389 { DownloadItem::INTERRUPTED, true , false, false, false},
390 { DownloadItem::INTERRUPTED, true , true , false, false}
download_item_model.cc 245 if (download_->GetState() != DownloadItem::INTERRUPTED ||
269 case DownloadItem::INTERRUPTED: {
293 if (download_->GetState() == DownloadItem::INTERRUPTED &&
444 case DownloadItem::INTERRUPTED:
445 // Interrupted or cancelled downloads should remain on the shelf.
download_path_reservation_tracker.cc 313 case DownloadItem::INTERRUPTED:
330 // Items should be COMPLETE/INTERRUPTED/CANCELLED before being destroyed.
download_shelf_context_menu.cc 64 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 145 new_state == DownloadItem::INTERRUPTED) {
148 if (last_state_ == DownloadItem::INTERRUPTED &&
440 CleanupItem(item, download_file, DownloadItem::INTERRUPTED);
464 CleanupItem(item, download_file, DownloadItem::INTERRUPTED);
528 CleanupItem(item, mock_download_file, DownloadItem::INTERRUPTED);
709 // download item is in an interrupted state.
733 TEST_F(DownloadItemTest, Interrupted) {
745 EXPECT_EQ(DownloadItem::INTERRUPTED, item->GetState());
755 // the download to be marked as interrupted until after the intermediate rename.
781 EXPECT_EQ(DownloadItem::INTERRUPTED, item->GetState())
    [all...]
download_browsertest.cc 654 EXPECT_EQ(DownloadItem::INTERRUPTED, download->GetState());
    [all...]
drag_download_file.cc 111 state == DownloadItem::INTERRUPTED) {
download_item_impl.cc 404 // 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 92 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 252 case DownloadItem::INTERRUPTED:
253 // Interrupted downloads can be resumed. Keep the Drive user data around
  /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 322 case DownloadItem::INTERRUPTED: {
  /external/chromium_org/content/public/test/
download_test_observer.cc 304 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...]
  /external/chromium_org/chrome/browser/extensions/
webstore_installer.cc 70 const char kDownloadInterruptedError[] = "Download interrupted";
338 case DownloadItem::INTERRUPTED:

Completed in 400 milliseconds

1 2