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

1 2

  /external/webkit/Source/WebKit/mac/Workers/
WebWorkersPrivate.mm 33 #import <WebCore/WorkerThread.h>
40 return WebCore::WorkerThread::workerThreadCount();
  /external/webkit/Source/WebCore/workers/
WorkerThread.cpp 31 #include "WorkerThread.h"
56 unsigned WorkerThread::m_threadCount = 0;
58 unsigned WorkerThread::workerThreadCount()
86 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy)
96 WorkerThread::~WorkerThread()
103 bool WorkerThread::start()
111 m_threadID = createThread(WorkerThread::workerThreadStart, this, "WebCore: Worker");
116 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 {
SharedWorkerThread.cpp 47 : WorkerThread(url, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy)
WorkerContext.h 62 class WorkerThread;
83 WorkerThread* thread() const { return m_thread; }
171 WorkerContext(const KURL&, const String&, WorkerThread*);
195 WorkerThread* m_thread;
  /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 {
  /development/tools/emulator/system/camera/
EmulatedCameraDevice.h 357 friend class WorkerThread;
358 class WorkerThread : public Thread {
365 inline explicit WorkerThread(EmulatedCameraDevice* camera_dev)
373 inline ~WorkerThread()
473 inline WorkerThread* getWorkerThread() const
487 sp<WorkerThread> mWorkerThread;
EmulatedCameraDevice.cpp 74 mWorkerThread = new WorkerThread(this);
286 status_t EmulatedCameraDevice::WorkerThread::readyToRun()
306 status_t EmulatedCameraDevice::WorkerThread::stopThread()
346 EmulatedCameraDevice::WorkerThread::SelectRes
347 EmulatedCameraDevice::WorkerThread::Select(int fd, int timeout)
EmulatedQemuCameraDevice.cpp 237 WorkerThread::SelectRes res =
239 if (res == WorkerThread::EXIT_THREAD) {
EmulatedFakeCameraDevice.cpp 195 WorkerThread::SelectRes res =
197 if (res == WorkerThread::EXIT_THREAD) {
  /external/chromium/base/threading/
worker_pool_posix.cc 53 class WorkerThread : public PlatformThread::Delegate {
55 WorkerThread(const std::string& name_prefix, int idle_seconds_before_exit,
68 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
71 void WorkerThread::ThreadMain() {
84 // The WorkerThread is non-joinable, so it deletes itself.
134 // The new PlatformThread will take ownership of the WorkerThread object,
136 WorkerThread* worker =
137 new WorkerThread(name_prefix_, idle_seconds_before_exit_, this);
  /external/webkit/Source/WebKit/win/
WebWorkersPrivate.cpp 35 #include <WebCore/WorkerThread.h>
77 *number = WebCore::WorkerThread::workerThreadCount();
  /external/webkit/Source/WebKit/chromium/src/
WebWorkerBase.h 44 class WorkerThread;
105 void setWorkerThread(PassRefPtr<WebCore::WorkerThread> thread) { m_workerThread = thread; }
106 WebCore::WorkerThread* workerThread() { return m_workerThread.get(); }
159 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;
692 @WorkerThread
704 @WorkerThread
869 @WorkerThread
911 @WorkerThread
924 @WorkerThread
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 35 import com.android.hierarchyviewer.util.WorkerThread;
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
WorkerScriptDebugServer.cpp 42 #include "WorkerThread.h"
129 WorkerThread* workerThread = workerContext->thread();
135 result = workerThread->runLoop().runInMode(workerContext, "debugger");

Completed in 409 milliseconds

1 2