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

1 2 3

  /external/chromium_org/v8/src/libplatform/
worker-thread.h 19 class WorkerThread : public Thread {
21 explicit WorkerThread(TaskQueue* queue);
22 virtual ~WorkerThread();
32 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
worker-thread.cc 13 WorkerThread::WorkerThread(TaskQueue* queue)
14 : Thread("V8 WorkerThread"), queue_(queue) {
19 WorkerThread::~WorkerThread() {
24 void WorkerThread::Run() {
default-platform.h 20 class WorkerThread;
43 std::vector<WorkerThread*> thread_pool_;
  /external/chromium_org/third_party/WebKit/Source/web/
WebWorkerInfo.cpp 34 #include "core/workers/WorkerThread.h"
40 return WebCore::WorkerThread::workerThreadCount();
  /external/chromium_org/v8/test/cctest/
test-libplatform-worker-thread.cc 38 TEST(WorkerThread) {
47 WorkerThread* thread1 = new WorkerThread(&queue);
48 WorkerThread* thread2 = new WorkerThread(&queue);
  /external/chromium_org/content/worker/
worker_thread.cc 32 static base::LazyInstance<base::ThreadLocalPointer<WorkerThread> > lazy_tls =
35 WorkerThread::WorkerThread() {
64 void WorkerThread::OnShutdown() {
71 WorkerThread::~WorkerThread() {
74 void WorkerThread::Shutdown() {
92 WorkerThread* WorkerThread::current() {
96 bool WorkerThread::OnControlMessageReceived(const IPC::Message& msg)
    [all...]
worker_thread.h 21 class WorkerThread : public ChildThread {
23 WorkerThread();
24 virtual ~WorkerThread();
28 static WorkerThread* current();
54 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
worker_webapplicationcachehost_impl.cc 15 WorkerThread::current()->appcache_dispatcher()->backend_proxy()) {
websharedworker_stub.cc 35 WorkerThread* worker_thread = WorkerThread::current();
57 WorkerThread* worker_thread = WorkerThread::current();
101 WorkerThread::current()->Send(
128 WorkerThread::current()->Send(
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerThread.cpp 29 #include "core/workers/WorkerThread.h"
56 static HashSet<WorkerThread*>& workerThreads()
58 DEFINE_STATIC_LOCAL(HashSet<WorkerThread*>, threads, ());
62 unsigned WorkerThread::workerThreadCount()
68 WorkerThread::WorkerThread(WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData> startupData)
80 WorkerThread::~WorkerThread()
87 bool WorkerThread::start()
95 m_threadID = createThread(WorkerThread::workerThreadStart, this, "WebCore: Worker")
    [all...]
SharedWorkerThread.h 34 #include "core/workers/WorkerThread.h"
40 class SharedWorkerThread : public WorkerThread {
WorkerThread.h 53 class WorkerThread : public RefCounted<WorkerThread> {
55 virtual ~WorkerThread();
76 WorkerThread(WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
87 // Static function executed as the core routine on the new thread. Passed a pointer to a WorkerThread object.
90 void workerThread();
DedicatedWorkerThread.cpp 47 : WorkerThread(workerLoaderProxy, workerObjectProxy, startupData)
66 WorkerThread::runEventLoop();
DedicatedWorkerThread.h 34 #include "core/workers/WorkerThread.h"
41 class DedicatedWorkerThread FINAL : public WorkerThread {
SharedWorkerThread.cpp 46 : WorkerThread(workerLoaderProxy, workerReportingProxy, startupData)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
WorkerDebuggerAgent.h 40 class WorkerThread;
49 static void interruptAndDispatchInspectorCommands(WorkerThread*);
WorkerDebuggerAgent.cpp 36 #include "core/workers/WorkerThread.h"
49 typedef HashMap<WorkerThread*, WorkerDebuggerAgent*> WorkerDebuggerAgents;
60 explicit RunInspectorCommandsTask(WorkerThread* thread)
65 // Process all queued debugger commands. WorkerThread is certainly
71 WorkerThread* m_thread;
97 void WorkerDebuggerAgent::interruptAndDispatchInspectorCommands(WorkerThread* thread)
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerThread.h 34 #include "core/workers/WorkerThread.h"
40 class ServiceWorkerThread FINAL : public WorkerThread {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
WorkerThread.java 31 public @interface WorkerThread {
  /frameworks/base/libs/hwui/thread/
TaskManager.cpp 42 mThreads.add(new WorkerThread(name));
67 sp<WorkerThread> thread;
85 status_t TaskManager::WorkerThread::readyToRun() {
92 bool TaskManager::WorkerThread::threadLoop() {
109 bool TaskManager::WorkerThread::addTask(TaskWrapper task) {
121 size_t TaskManager::WorkerThread::getTaskCount() const {
126 void TaskManager::WorkerThread::exit() {
TaskManager.h 78 class WorkerThread: public Thread {
80 WorkerThread(const String8 name): mSignal(Condition::WAKE_UP_ONE), mName(name) { }
101 Vector<sp<WorkerThread> > mThreads;
  /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()
473 inline WorkerThread* getWorkerThread() const
487 sp<WorkerThread> mWorkerThread;
  /external/chromium_org/base/threading/
worker_pool_posix.cc 67 class WorkerThread : public PlatformThread::Delegate {
69 WorkerThread(const std::string& name_prefix,
80 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
83 void WorkerThread::ThreadMain() {
94 TRACE_EVENT2("toplevel", "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/content/child/
child_message_filter.h 56 friend class WorkerThread;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
WorkerScriptDebugServer.h 40 class WorkerThread;

Completed in 377 milliseconds

1 2 3