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

  /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.
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 61 * NEW -> INTERRUPTING -> INTERRUPTED
70 private static final int INTERRUPTED = 6;
145 UNSAFE.putOrderedInt(this, stateOffset, INTERRUPTED); // final state
306 // assert state == INTERRUPTED;
314 // Thread.interrupted();
370 if (Thread.interrupted()) {
401 * 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);
history_unittest.cc 324 EXPECT_NE(0, AddDownload(DownloadItem::INTERRUPTED, month_ago));
  /external/chromium/chrome/browser/automation/
automation_provider.cc 239 state_to_string[DownloadItem::INTERRUPTED] = std::string("INTERRUPTED");
    [all...]
  /external/chromium/chrome/browser/ui/gtk/download/
download_item_gtk.cc 64 // How long the 'download complete/interrupted' animation should last for.
391 case DownloadItem::INTERRUPTED:
    [all...]
  /external/chromium/chrome/browser/ui/views/download/
download_item_view.cc 70 // How long the 'download interrupted' animation should last for.
389 case DownloadItem::INTERRUPTED:
    [all...]

Completed in 222 milliseconds