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

  /external/webkit/Source/JavaScriptCore/runtime/
Completion.h 34 enum ComplType { Normal, Break, Continue, ReturnValue, Throw, Interrupted, Terminated };
ExceptionHelpers.cpp 51 virtual ComplType exceptionType() const { return Interrupted; }
  /external/chromium/chrome/browser/download/
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.
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_manager.cc 750 // TODO(ahendrickson) - Remove this when we add resuming of interrupted
762 download->Interrupted(size, os_error);
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptController.cpp 156 if (comp.complType() == Throw || comp.complType() == Interrupted)
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp 669 isInterrupt = exceptionType == Interrupted || exceptionType == Terminated;
    [all...]

Completed in 115 milliseconds