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

1 2

  /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/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.cpp 48 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerObjectProxy)
66 WorkerThread::runEventLoop();
DedicatedWorkerThread.h 35 #include "WorkerThread.h"
41 class DedicatedWorkerThread : public WorkerThread {
SharedWorkerThread.h 35 #include "WorkerThread.h"
39 class SharedWorkerThread : public WorkerThread {
WorkerContext.h 52 class WorkerThread;
73 WorkerThread* thread() const { return m_thread; }
129 WorkerContext(const KURL&, const String&, WorkerThread*);
150 WorkerThread* m_thread;
SharedWorkerThread.cpp 47 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy)
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().
  /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 {
  /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();
ctrl_server.cpp 58 class CtrlServerThread : public WorkerThread {
233 int ret_value = WorkerThread::Run(NULL);
253 bool rv = done_ || WorkerThread::isRunning();
mock_ril.cpp 216 class UnsolicitedThread : public WorkerThread {
  /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/webkit/WebKit/win/
WebWorkersPrivate.cpp 35 #include <WebCore/WorkerThread.h>
77 *number = 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;
  /packages/apps/Gallery/src/com/android/camera/
ImageLoader.java 113 private class WorkerThread implements Runnable {
152 Thread t = new Thread(new WorkerThread());
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventLogPanel.java 32 import com.android.ddmuilib.annotation.WorkerThread;
683 @WorkerThread
695 @WorkerThread
858 @WorkerThread
898 @WorkerThread
911 @WorkerThread
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 34 import com.android.hierarchyviewer.util.WorkerThread;
    [all...]
ScreenViewer.java 5 import com.android.hierarchyviewer.util.WorkerThread;
671 @WorkerThread
808 @WorkerThread
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
NativeHeapPanel.java 27 import com.android.ddmuilib.annotation.WorkerThread;
745 @WorkerThread
    [all...]
  /external/webkit/WebCore/
Android.mk 936 workers/WorkerThread.cpp \

Completed in 909 milliseconds

1 2