Searched refs:WorkerThread (Results 1 - 25 of 43) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/web/
H A DWebWorkerInfo.cpp34 #include "core/workers/WorkerThread.h"
40 return WebCore::WorkerThread::workerThreadCount();
H A DWebEmbeddedWorkerImpl.h41 class WorkerThread;
83 RefPtr<WebCore::WorkerThread> m_workerThread;
H A DWebSharedWorkerImpl.h42 #include "core/workers/WorkerThread.h"
112 void setWorkerThread(PassRefPtr<WebCore::WorkerThread> thread) { m_workerThread = thread; }
113 WebCore::WorkerThread* workerThread() { return m_workerThread.get(); }
133 RefPtr<WebCore::WorkerThread> m_workerThread;
/external/chromium_org/content/worker/
H A Dworker_thread.cc32 static base::LazyInstance<base::ThreadLocalPointer<WorkerThread> > lazy_tls =
35 WorkerThread::WorkerThread() { function in class:content::WorkerThread
63 void WorkerThread::OnShutdown() {
70 WorkerThread::~WorkerThread() {
73 void WorkerThread::Shutdown() {
91 WorkerThread* WorkerThread::current() {
95 bool WorkerThread
[all...]
H A Dworker_thread.h21 class WorkerThread : public ChildThread { class in namespace:content
23 WorkerThread();
24 virtual ~WorkerThread();
28 static WorkerThread* current();
54 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
H A Dworker_webapplicationcachehost_impl.cc16 WorkerThread::current()->appcache_dispatcher()->backend_proxy()) {
H A Dwebsharedworker_stub.cc31 WorkerThread* worker_thread = WorkerThread::current();
45 WorkerThread* worker_thread = WorkerThread::current();
H A Dworker_main.cc58 worker_process.set_main_thread(new WorkerThread());
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerThread.cpp29 #include "core/workers/WorkerThread.h"
55 static HashSet<WorkerThread*>& workerThreads()
57 DEFINE_STATIC_LOCAL(HashSet<WorkerThread*>, threads, ());
61 unsigned WorkerThread::workerThreadCount()
67 WorkerThread::WorkerThread(WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy, PassOwnPtr<WorkerThreadStartupData> startupData) function in class:WebCore::WorkerThread
78 WorkerThread::~WorkerThread()
85 bool WorkerThread::start()
93 m_threadID = createThread(WorkerThread
[all...]
H A DWorkerThread.h49 class WorkerThread : public RefCounted<WorkerThread> { class in namespace:WebCore
51 virtual ~WorkerThread();
69 WorkerThread(WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtr<WorkerThreadStartupData>);
80 // Static function executed as the core routine on the new thread. Passed a pointer to a WorkerThread object.
H A DDedicatedWorkerThread.cpp47 : WorkerThread(workerLoaderProxy, workerObjectProxy, startupData)
66 WorkerThread::runEventLoop();
H A DSharedWorkerThread.h34 #include "core/workers/WorkerThread.h"
40 class SharedWorkerThread : public WorkerThread {
H A DDedicatedWorkerThread.h34 #include "core/workers/WorkerThread.h"
41 class DedicatedWorkerThread : public WorkerThread {
H A DSharedWorkerThread.cpp46 : WorkerThread(workerLoaderProxy, workerReportingProxy, startupData)
H A DWorkerGlobalScope.h59 class WorkerThread;
84 WorkerThread* thread() const { return m_thread; }
144 WorkerGlobalScope(const KURL&, const String& userAgent, WorkerThread*, double timeOrigin, PassOwnPtr<WorkerClients>);
171 WorkerThread* m_thread;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DWorkerDebuggerAgent.h40 class WorkerThread;
50 static void interruptAndDispatchInspectorCommands(WorkerThread*);
H A DWorkerDebuggerAgent.cpp36 #include "core/workers/WorkerThread.h"
49 typedef HashMap<WorkerThread*, WorkerDebuggerAgent*> WorkerDebuggerAgents;
60 RunInspectorCommandsTask(WorkerThread* thread, WorkerGlobalScope* workerGlobalScope)
68 // just be ignored. WorkerThread is certainly alive if this task is being executed.
73 WorkerThread* m_thread;
102 void WorkerDebuggerAgent::interruptAndDispatchInspectorCommands(WorkerThread* thread)
/external/chromium/base/threading/
H A Dworker_pool_posix.cc53 class WorkerThread : public PlatformThread::Delegate { class in namespace:base::__anon1810
55 WorkerThread(const std::string& name_prefix, int idle_seconds_before_exit, function in class:base::__anon1810::WorkerThread
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/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DServiceWorkerThread.h34 #include "core/workers/WorkerThread.h"
40 class ServiceWorkerThread : public WorkerThread {
H A DServiceWorkerThread.cpp46 : WorkerThread(workerLoaderProxy, workerReportingProxy, startupData)
/external/chromium_org/base/threading/
H A Dworker_pool_posix.cc67 class WorkerThread : public PlatformThread::Delegate { class in namespace:base::__anon4050
69 WorkerThread(const std::string& name_prefix, function in class:base::__anon4050::WorkerThread
80 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
83 void WorkerThread::ThreadMain() {
94 TRACE_EVENT2("task", "WorkerThread::ThreadMain::Run",
108 // The WorkerThread is non-joinable, so it deletes itself.
167 // The new PlatformThread will take ownership of the WorkerThread object,
169 WorkerThread* worker =
170 new WorkerThread(name_prefix_, this);
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DWorkerScriptDebugServer.h43 class WorkerThread;
/external/stressapptest/src/
H A Dworker.h204 class WorkerThread { class
212 WorkerThread();
213 virtual ~WorkerThread();
239 // Starts per-WorkerThread timer.
248 // Stops per-WorkerThread timer and records thread run duration.
405 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
409 class FileThread : public WorkerThread {
492 class NetworkThread : public WorkerThread {
558 class CopyThread : public WorkerThread {
571 class InvertThread : public WorkerThread {
[all...]
/external/chromium_org/content/child/
H A Dchild_message_filter.h51 friend class WorkerThread;
/external/chromium_org/chrome/test/functional/media/
H A Dworker_thread.py33 test_worker_class: WorkerThread class reference.
56 class WorkerThread(threading.Thread): class in inherits:threading.Thread
63 """Sets up WorkerThread class variables.
104 unique_url = '%s?%d' % (self.__url, WorkerThread._task_id.next())

Completed in 1482 milliseconds

12