HomeSort by relevance Sort by last modified time
    Searched defs:WorkItem (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/installer/util/
work_item.cc 21 WorkItem::WorkItem() : ignore_failure_(false) {
24 WorkItem::~WorkItem() {
27 CallbackWorkItem* WorkItem::CreateCallbackWorkItem(
32 CopyRegKeyWorkItem* WorkItem::CreateCopyRegKeyWorkItem(
41 CopyTreeWorkItem* WorkItem::CreateCopyTreeWorkItem(
51 CreateDirWorkItem* WorkItem::CreateCreateDirWorkItem(
56 CreateRegKeyWorkItem* WorkItem::CreateCreateRegKeyWorkItem(
61 DeleteRegKeyWorkItem* WorkItem::CreateDeleteRegKeyWorkItem
    [all...]
work_item.h 39 class WorkItem {
57 // TODO(robertshield): Move this out of WorkItem.
64 virtual ~WorkItem();
170 // Perform the actions of WorkItem. Returns true if success, returns false
172 // If the WorkItem is transactional, then Do() is done as a transaction.
176 // Rollback any actions previously carried out by this WorkItem. If the
177 // WorkItem is transactional, then the previous actions can be fully
178 // rolled back. If the WorkItem is non-transactional, the rollback is a
182 // If called with true, this WorkItem may return true from its Do() method
188 // Returns true if this WorkItem should ignore failures
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageLoader.java 37 private final ArrayList<WorkItem> mQueue = new ArrayList<WorkItem>();
55 WorkItem w = new WorkItem(image, imageLoadedRunnable, tag);
96 private static class WorkItem {
101 WorkItem(IImage image, LoadedCallback onLoadedRunnable, int tag) {
120 WorkItem workItem = null;
126 workItem = mQueue.remove(0);
137 final Bitmap b = workItem.mImage.miniThumbBitmap()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
TestRunner.h 136 class WorkItem {
138 virtual ~WorkItem() { }
158 void addWork(WorkItem*);
173 std::deque<WorkItem*> m_queue;
  /external/chromium/net/http/
http_cache.cc 120 WorkItem* writer;
137 class HttpCache::WorkItem {
139 WorkItem(WorkItemOperation operation, Transaction* trans, ActiveEntry** entry)
142 WorkItem(WorkItemOperation operation, Transaction* trans,
146 ~WorkItem() {}
502 scoped_ptr<WorkItem> item(new WorkItem(WI_CREATE_BACKEND, NULL, callback,
537 WorkItem* item = new WorkItem(WI_CREATE_BACKEND, trans, NULL, NULL);
609 WorkItem* item = new WorkItem(WI_DOOM_ENTRY, trans, NULL)
    [all...]
  /external/chromium_org/net/http/
http_cache.cc 116 WorkItem* writer;
133 class HttpCache::WorkItem {
135 WorkItem(WorkItemOperation operation, Transaction* trans, ActiveEntry** entry)
140 WorkItem(WorkItemOperation operation, Transaction* trans,
147 ~WorkItem() {}
455 scoped_ptr<WorkItem> item(new WorkItem(WI_CREATE_BACKEND, NULL, callback,
490 WorkItem* item = new WorkItem(
575 WorkItem* item = new WorkItem(WI_DOOM_ENTRY, trans, NULL)
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/app/state/
VideoRecorderAppState.java 94 private class WorkItem {
100 public WorkItem(int width, int height) {
114 private LinkedBlockingQueue<WorkItem> freeItems;
115 private LinkedBlockingQueue<WorkItem> usedItems = new LinkedBlockingQueue<WorkItem>();
123 final WorkItem item = freeItems.take();
153 freeItems = new LinkedBlockingQueue<WorkItem>();
155 freeItems.add(new WorkItem(width, height));
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp     [all...]

Completed in 226 milliseconds