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

  /frameworks/base/tools/aapt/
WorkQueue.h 34 class WorkQueue {
50 WorkQueue(size_t maxThreads, bool canCallJava = true);
55 ~WorkQueue();
91 WorkThread(WorkQueue* workQueue, bool canCallJava);
97 WorkQueue* const mWorkQueue;
WorkQueue.cpp 18 #define LOG_TAG "WorkQueue"
21 #include "WorkQueue.h"
25 // --- WorkQueue ---
27 WorkQueue::WorkQueue(size_t maxThreads, bool canCallJava) :
32 WorkQueue::~WorkQueue() {
38 status_t WorkQueue::schedule(WorkUnit* workUnit, size_t backlog) {
48 status_t status = workThread->run("WorkQueue::WorkThread");
68 status_t WorkQueue::cancel()
    [all...]
Android.mk 46 WorkQueue.cpp \
Resource.cpp 16 #include "WorkQueue.h"
323 class PreProcessImageWorkUnit : public WorkQueue::WorkUnit {
351 WorkQueue wq(MAX_THREADS, false);
    [all...]
  /hardware/intel/common/wrs_omxil_core/utils/src/
workqueue.cpp 2 * workqueue.cpp, workqueue class
19 #include <workqueue.h>
22 WorkQueue::WorkQueue()
37 WorkQueue::~WorkQueue()
49 int WorkQueue::StartWork(bool executing)
59 void WorkQueue::StopWork(void)
87 void WorkQueue::PauseWork(void
    [all...]
  /hardware/intel/common/wrs_omxil_core/utils/inc/
workqueue.h 2 * workqueue.h, workqueue class
34 class WorkQueue : public Thread, public WorkableInterface
37 WorkQueue();
39 * if WorkQueue has the pending works not proccessed yet,
40 * WorkQueue::Run() calls its own Work() instead of the derived class's.
43 ~WorkQueue();
51 /* the class inheriting WorkQueue uses this method */
58 * inheriting WorkQueue is destructed,
63 /* remove all scheduled works matched with wi from workqueue list *
    [all...]
  /external/chromium_org/base/synchronization/
condition_variable_unittest.cc 53 // construct an instance of a WorkQueue. The WorkQueue will spin up some
55 // a central repository of the work thread's activity. Finally, the WorkQueue
57 // cases will validate that the WorkQueue has records showing that the desired
62 // The WorkQueue::lock_, as accessed via WorkQueue::lock(), should be used for
64 class WorkQueue : public PlatformThread::Delegate {
66 explicit WorkQueue(int thread_count);
67 virtual ~WorkQueue();
254 WorkQueue queue(kThreadCount); // Start the threads
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinWorkerThread.java 29 * This class just maintains links to its pool and WorkQueue. The
31 * workQueue field is not set until a call to registerWorker
33 * by requiring that the workQueue field is only accessed by the
38 final ForkJoinPool.WorkQueue workQueue; // work-stealing mechanics
50 this.workQueue = pool.registerWorker(this);
73 return workQueue.poolIndex >>> 1; // ignore odd/even tag bit
108 pool.runWorker(workQueue);
ForkJoinPool.java 150 * class WorkQueue). These are special forms of Deques that
305 * field WorkQueue.nextWait. Queuing deals with several intrinsic
471 * fields of WorkQueue maintain data structures managed by
547 * in WorkQueue.tryRemoveAndExec. We don't need the proxy to
600 * do not want multiple WorkQueue instances or multiple queue
606 static final class WorkQueue {
    [all...]
ForkJoinTask.java 352 int s; Thread t; ForkJoinWorkerThread wt; ForkJoinPool.WorkQueue w;
355 (w = (wt = (ForkJoinWorkerThread)t).workQueue).
370 (wt = (ForkJoinWorkerThread)t).pool.awaitJoin(wt.workQueue, this) :
660 ((ForkJoinWorkerThread)t).workQueue.push(this);
    [all...]
  /external/chromium_org/content/shell/renderer/test_runner/
test_runner.h 139 friend class WorkQueue;
143 class WorkQueue {
145 explicit WorkQueue(TestRunner* controller);
146 virtual ~WorkQueue();
161 class WorkQueueTask : public WebMethodTask<WorkQueue> {
163 WorkQueueTask(WorkQueue* object) : WebMethodTask<WorkQueue>(object) {}
588 WorkQueue work_queue_;
test_runner.cc     [all...]
  /hardware/intel/common/wrs_omxil_core/base/inc/
componentbase.h 29 #include <workqueue.h>
67 WorkQueue *workq;
398 WorkQueue *bufferwork;
  /ndk/sources/host-tools/ndk-depends/
ndk-depends.cc 1015 typedef std::list<String> WorkQueue;
1022 WorkQueue& queue) {
    [all...]
  /hardware/intel/common/wrs_omxil_core/base/src/
componentbase.cpp 30 #include <workqueue.h>
48 workq = new WorkQueue;
55 LOGV("command process workqueue started\n");
70 LOGV("command process workqueue stopped\n");
259 bufferwork = new WorkQueue();
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.databinding_1.4.0.I20100601-0800.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ndis.h     [all...]

Completed in 1031 milliseconds