HomeSort by relevance Sort by last modified time
    Searched full:workerthread (Results 1 - 25 of 55) sorted by null

1 2 3

  /hardware/ril/mock-ril/src/cpp/
worker.cpp 34 void * WorkerThread::Work(void *param) {
35 WorkerThread *t = (WorkerThread *)param;
42 bool WorkerThread::isRunning() {
43 DBG("WorkerThread::isRunning E");
45 DBG("WorkerThread::isRunning X ret_value=%d", ret_value);
49 WorkerThread::WorkerThread() {
50 DBG("WorkerThread::WorkerThread E")
    [all...]
worker.h 30 * 0) Extend WorkerThread creating a Worker method which
48 * 1) Create the WorkerThread.
53 class WorkerThread {
72 WorkerThread();
74 virtual ~WorkerThread();
  /external/webkit/WebCore/workers/
WorkerThread.cpp 31 #include "WorkerThread.h"
51 unsigned WorkerThread::m_threadCount = 0;
53 unsigned WorkerThread::workerThreadCount()
80 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy)
90 WorkerThread::~WorkerThread()
97 bool WorkerThread::start()
105 m_threadID = createThread(WorkerThread::workerThreadStart, this, "WebCore: Worker");
110 void* WorkerThread::workerThreadStart(void* thread
    [all...]
WorkerThread.h 47 class WorkerThread : public RefCounted<WorkerThread> {
49 virtual ~WorkerThread();
68 WorkerThread(const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
79 // Static function executed as the core routine on the new thread. Passed a pointer to a WorkerThread object.
81 void* workerThread();
97 // Track the number of WorkerThread instances for use in layout tests.
DedicatedWorkerThread.h 35 #include "WorkerThread.h"
41 class DedicatedWorkerThread : public WorkerThread {
SharedWorkerThread.h 35 #include "WorkerThread.h"
39 class SharedWorkerThread : public WorkerThread {
DedicatedWorkerThread.cpp 48 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerObjectProxy)
66 WorkerThread::runEventLoop();
WorkerContext.h 52 class WorkerThread;
73 WorkerThread* thread() const { return m_thread; }
129 WorkerContext(const KURL&, const String&, WorkerThread*);
150 WorkerThread* m_thread;
WorkerContext.cpp 49 #include "WorkerThread.h"
61 WorkerContext::WorkerContext(const KURL& url, const String& userAgent, WorkerThread* thread)
77 // Notify proxy that we are going away. This can free the WorkerThread object, so do not access it after this.
124 // Notify parent that this context is closed. Parent is responsible for calling WorkerThread::stop().
SharedWorkerThread.cpp 47 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy)
  /external/chromium/base/
worker_pool_linux.cc 50 class WorkerThread : public PlatformThread::Delegate {
52 WorkerThread(const std::string& name_prefix, int idle_seconds_before_exit,
65 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
68 void WorkerThread::ThreadMain() {
81 // The WorkerThread is non-joinable, so it deletes itself.
133 // The new PlatformThread will take ownership of the WorkerThread object,
135 WorkerThread* worker =
136 new WorkerThread(name_prefix_, idle_seconds_before_exit_, this);
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
RefQueueWorker.java 65 protected volatile Thread workerThread;
95 if (this.workerThread == null) {
96 this.workerThread = Thread.currentThread();
99 while (this.workerThread == Thread.currentThread()) {
120 Thread wt = this.workerThread;
122 this.workerThread = null; // indicate shutdown
135 return "RefQueueWorker::" + this.workerThread;
  /external/webkit/WebKit/gtk/webkit/
webkitworkers.cpp 34 #include "WorkerThread.h"
39 return WebCore::WorkerThread::workerThreadCount();
  /external/webkit/WebKit/mac/Workers/
WebWorkersPrivate.mm 33 #import <WebCore/WorkerThread.h>
40 return WebCore::WorkerThread::workerThreadCount();
  /external/webkit/WebKit/chromium/src/
WebWorkerBase.h 43 class WorkerThread;
87 void setWorkerThread(PassRefPtr<WebCore::WorkerThread> thread) { m_workerThread = thread; }
88 WebCore::WorkerThread* workerThread() { return m_workerThread.get(); }
142 RefPtr<WebCore::WorkerThread> m_workerThread;
WebSharedWorkerImpl.cpp 66 return workerThread();
78 workerThread()->runLoop().postTask(
99 workerThread()->start();
WebWorkerImpl.cpp 108 workerThread()->start();
130 workerThread()->runLoop().postTask(
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/annotation/
WorkerThread.java 30 public @interface WorkerThread {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
WorkerThread.java 31 public @interface WorkerThread {
  /external/webkit/WebKit/win/
WebWorkersPrivate.cpp 35 #include <WebCore/WorkerThread.h>
77 *number = WebCore::WorkerThread::workerThreadCount();
  /packages/apps/Gallery/src/com/android/camera/
ImageLoader.java 113 private class WorkerThread implements Runnable {
152 Thread t = new Thread(new WorkerThread());
  /external/webkit/WebCore/bindings/v8/
WorkerScriptController.cpp 47 #include "WorkerThread.h"
  /external/webkit/WebCore/dom/
ActiveDOMObject.cpp 32 #include "WorkerThread.h"
  /external/webkit/WebCore/notifications/
NotificationCenter.h 36 #include "WorkerThread.h"
  /external/webkit/WebCore/websockets/
ThreadableWebSocketChannel.cpp 44 #include "WorkerThread.h"

Completed in 675 milliseconds

1 2 3