HomeSort by relevance Sort by last modified time
    Searched defs:Worker (Results 1 - 12 of 12) sorted by null

  /external/webkit/WebCore/workers/
Worker.cpp 32 #include "Worker.h"
52 Worker::Worker(const String& url, ScriptExecutionContext* context, ExceptionCode& ec)
62 setPendingActivity(this); // The worker context does not exist while loading, so we must ensure that the worker object is not collected, as well as its event listeners.
65 Worker::~Worker()
68 ASSERT(scriptExecutionContext()); // The context is protected by worker context proxy, so it cannot be destroyed while a Worker exists.
73 void Worker::postMessage(PassRefPtr<SerializedScriptValue> message, MessagePort* port, ExceptionCode& ec
    [all...]
Worker.h 54 class Worker : public AbstractWorker, private WorkerScriptLoaderClient {
56 static PassRefPtr<Worker> create(const String& url, ScriptExecutionContext* context, ExceptionCode& ec) { return adoptRef(new Worker(url, context, ec)); }
57 ~Worker();
59 virtual Worker* toWorker() { return this; }
75 Worker(const String&, ScriptExecutionContext*, ExceptionCode&);
83 WorkerContextProxy* m_contextProxy; // The proxy outlives the worker to perform thread shutdown.
  /external/chromium/net/socket/
tcp_pinger.h 30 worker_(new Worker(addr)) {
55 &net::TCPPinger::Worker::DoConnect));
65 &net::TCPPinger::Worker::DoDisconnect));
77 class Worker : public base::RefCountedThreadSafe<Worker> {
79 explicit Worker(const net::AddressList& addr)
84 &net::TCPPinger::Worker::ConnectDone)) {
118 friend class base::RefCountedThreadSafe<Worker>;
120 ~Worker() {}
126 net::CompletionCallbackImpl<Worker> connect_callback_
    [all...]
  /hardware/ril/mock-ril/src/cpp/
worker.cpp 19 #include "worker.h"
37 void * v = t->Worker(t->workerParam_);
115 // Wait until worker is running
137 void * Worker(void *param) {
138 DBG("WorkerQueueThread::Worker E");
155 DBG("WorkerQueueThread::Worker move p=%p time=%lldms",
167 DBG("WorkerQueueThread::Worker wait"
189 DBG("WorkerQueueThread::Worker X");
315 void * Worker(void *param)
317 LOGD("TesterThread::Worker E param=%p", param)
    [all...]
ctrl_server.cpp 32 #include "worker.h"
322 virtual void * Worker(void *param) {
323 DBG("CtrlServerThread::Worker E param=%p stopper_fd_=%d",
334 DBG("CtrlServerThread::Worker wait on server for a client");
342 DBG("CtrlServerThread::Worker accepted server_to_client_socket_=%d isRunning()=%d",
349 DBG("CtrlServerThread::Worker wait on client for message");
359 LOGD("CtrlServerThread::Worker echo");
363 DBG("CtrlServerThread::Worker sendToCtrlServer");
384 DBG("CtrlServerThread::Worker X param=%p", param);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
SingleThreadNamedTaskExecutor.java 38 mWorker = threadFactory.newThread(new Worker());
63 private class Worker implements Runnable {
68 if (!mClosed) Log.w(TAG, "Worker exited before close");
  /frameworks/base/tests/CoreTests/android/core/
MonitorTest.java 316 private class Worker extends Thread {
320 Worker(int id, Object lock) {
321 super("Worker(" + id + ")");
345 Worker w[] = new Worker[NUM_WORKERS];
349 w[i] = new Worker(i * 2 - 1, new Object());
391 Worker w1 = new Worker(0, 1);
392 Worker w2 = new Worker(2, 3)
    [all...]
TestWebServer.java 41 /* Where worker threads stand idle */
44 /* List of all active worker threads */
50 /* max # worker threads */
216 * The AcceptThread is responsible for initiating worker threads
263 Worker w = null;
266 Worker ws = new Worker();
269 (new Thread(ws, "additional worker")).start();
271 w = (Worker) threads.elementAt(0);
298 // Stop worker threads from continuin
    [all...]
  /packages/apps/Phone/src/com/android/phone/
Ringer.java 59 private Worker mRingThread;
229 private class Worker implements Runnable {
233 Worker(String name) {
277 mRingThread = new Worker("ringer");
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 244 * The AcceptThread is responsible for initiating worker threads
275 new Thread(new Worker(s), "additional worker").start();
332 * The worker thread handles all interactions with a current open
337 class Worker implements Support_HttpConstants, Runnable {
366 /* Create a new worker thread */
367 Worker(Socket s) {
  /libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java 56 * handle the request, even if other worker threads are idle. If
87 * worker threads or other threads using the pool do not possess this
222 * <p>If hook or callback methods throw exceptions, internal worker
408 * The queue used for holding tasks and handing off to worker
436 * Set containing all worker threads in pool. Accessed only when
439 private final HashSet<Worker> workers = new HashSet<Worker>();
454 * worker threads. Accessed only under mainLock.
521 * have permission to actually interrupt threads in the worker set
542 * Class Worker mainly maintains interrupt control state fo
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 85 private Worker mAlbumArtWorker;
102 mAlbumArtWorker = new Worker("album art worker");
    [all...]

Completed in 754 milliseconds