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

1 2 3

  /external/v8/src/libplatform/
worker-thread.cc 13 WorkerThread::WorkerThread(TaskQueue* queue)
14 : Thread(Options("V8 WorkerThread")), queue_(queue) {
19 WorkerThread::~WorkerThread() {
24 void WorkerThread::Run() {
worker-thread.h 19 class WorkerThread : public base::Thread {
21 explicit WorkerThread(TaskQueue* queue);
22 virtual ~WorkerThread();
32 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
default-platform.h 23 class WorkerThread;
66 std::vector<WorkerThread*> thread_pool_;
  /packages/apps/TV/src/com/android/tv/data/epg/
EpgReader.java 19 import android.support.annotation.WorkerThread;
29 @WorkerThread
  /external/v8/test/unittests/libplatform/
worker-thread-unittest.cc 40 WorkerThread thread1(&queue);
41 WorkerThread thread2(&queue);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
WorkerThread.java 31 public @interface WorkerThread {
  /frameworks/base/libs/hwui/thread/
TaskManager.cpp 42 mThreads.push_back(new WorkerThread(name));
67 sp<WorkerThread> thread;
85 status_t TaskManager::WorkerThread::readyToRun() {
90 bool TaskManager::WorkerThread::threadLoop() {
106 bool TaskManager::WorkerThread::addTask(const TaskWrapper& task) {
122 size_t TaskManager::WorkerThread::getTaskCount() const {
127 void TaskManager::WorkerThread::exit() {
TaskManager.h 79 class WorkerThread: public Thread {
81 WorkerThread(const String8 name): mSignal(Condition::WAKE_UP_ONE), mName(name) { }
102 std::vector<sp<WorkerThread> > mThreads;
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/tvinput/
TunerRecordingSession.java 25 import android.support.annotation.WorkerThread;
85 @WorkerThread
93 @WorkerThread
101 @WorkerThread
109 @WorkerThread
  /external/opencv3/3rdparty/openexr/IlmThread/
IlmThreadPool.cpp 53 class WorkerThread: public Thread
57 WorkerThread (ThreadPool::Data* data);
99 list<WorkerThread*> threads; // the list of all threads
109 // class WorkerThread
112 WorkerThread::WorkerThread (ThreadPool::Data* data):
120 WorkerThread::run ()
254 for (list<WorkerThread*>::iterator i = threads.begin();
369 _data->threads.push_back (new WorkerThread (_data));
388 _data->threads.push_back (new WorkerThread (_data))
    [all...]
  /device/generic/goldfish/camera/
EmulatedCameraDevice.h 357 friend class WorkerThread;
358 class WorkerThread : public Thread {
365 inline explicit WorkerThread(EmulatedCameraDevice* camera_dev)
373 inline ~WorkerThread()
475 inline WorkerThread* getWorkerThread() const
489 sp<WorkerThread> mWorkerThread;
EmulatedCameraDevice.cpp 74 mWorkerThread = new WorkerThread(this);
286 status_t EmulatedCameraDevice::WorkerThread::readyToRun()
311 status_t EmulatedCameraDevice::WorkerThread::stopThread()
362 EmulatedCameraDevice::WorkerThread::SelectRes
363 EmulatedCameraDevice::WorkerThread::Select(int fd, int timeout)
EmulatedQemuCameraDevice.cpp 237 WorkerThread::SelectRes res =
239 if (res == WorkerThread::EXIT_THREAD) {
  /packages/apps/TV/src/com/android/tv/util/
NetworkUtils.java 22 import android.support.annotation.WorkerThread;
31 @WorkerThread
RecurringRunner.java 23 import android.support.annotation.WorkerThread;
118 @WorkerThread
AsyncDbTask.java 26 import android.support.annotation.WorkerThread;
158 @WorkerThread
208 @WorkerThread
255 @WorkerThread
  /frameworks/base/core/java/android/annotation/
WorkerThread.java 33 * &#64;WorkerThread
41 public @interface WorkerThread {
  /external/libchrome/base/threading/
worker_pool_posix.cc 63 class WorkerThread : public PlatformThread::Delegate {
65 WorkerThread(const std::string& name_prefix,
75 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
78 void WorkerThread::ThreadMain() {
89 TRACE_EVENT2("toplevel", "WorkerThread::ThreadMain::Run",
102 // The WorkerThread is non-joinable, so it deletes itself.
162 // The new PlatformThread will take ownership of the WorkerThread object,
164 WorkerThread* worker = new WorkerThread(name_prefix_, this);
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
AppFuse.java 19 import android.annotation.WorkerThread;
162 @WorkerThread
172 @WorkerThread
187 @WorkerThread
201 @WorkerThread
212 @WorkerThread
  /frameworks/support/annotations/src/android/support/annotation/
WorkerThread.java 34 * &#64;WorkerThread
41 public @interface WorkerThread {
  /frameworks/base/core/java/android/app/
IntentService.java 19 import android.annotation.WorkerThread;
168 @WorkerThread
  /frameworks/base/core/java/android/provider/
BlockedNumberContract.java 18 import android.annotation.WorkerThread;
243 @WorkerThread
267 @WorkerThread
  /packages/apps/Gallery/src/com/android/camera/
ImageLoader.java 113 private class WorkerThread implements Runnable {
152 Thread t = new Thread(new WorkerThread());
  /frameworks/base/keystore/java/android/security/
KeyChain.java 20 import android.annotation.WorkerThread;
365 @Nullable @WorkerThread
409 @Nullable @WorkerThread
559 @WorkerThread
567 @WorkerThread
  /frameworks/base/core/java/android/os/
AsyncTask.java 20 import android.annotation.WorkerThread;
367 @WorkerThread
648 @WorkerThread

Completed in 2077 milliseconds

1 2 3