HomeSort by relevance Sort by last modified time
    Searched refs:Worker (Results 76 - 100 of 127) sorted by null

1 2 34 5 6

  /external/drm_hwcomposer/
drmeventlistener.cpp 34 : Worker("drm-event-listener", HAL_PRIORITY_URGENT_DISPLAY),
vsyncworker.cpp 17 #define LOG_TAG "hwc-vsync-worker"
21 #include "worker.h"
35 : Worker("vsync", HAL_PRIORITY_URGENT_DISPLAY),
99 ALOGW("Vsync worker active with conn=%p refresh=%f\n", conn,
  /external/libchrome/base/threading/
sequenced_worker_pool.h 33 // A worker thread pool that enforces ordering between sets of tasks. It also
70 // not enforce shutdown semantics or allow us to specify how many worker
81 // Defines what should happen to a task posted to the worker pool on
86 // shutdown will be ignored (the worker thread will not be joined).
125 // Opaque identifier that defines sequencing of tasks posted to the worker
163 // If current thread is not a SequencedWorkerPool worker thread or is running
181 // current thread is not a SequencedWorkerPool worker thread.
227 // Posts the given task for execution in the worker pool. Tasks posted with
234 // all worker threads are busy running CONTINUE_ON_SHUTDOWN tasks, there
341 // Implements the worker pool shutdown. This should be called during ap
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestWebServer.java 208 * The AcceptThread is responsible for initiating worker threads
230 new Thread(new Worker(s).setDelay(mDelay), "additional worker").start();
287 * The worker thread handles all interactions with a current open
292 class Worker implements Support_HttpConstants, Runnable {
324 /* Create a new worker thread */
325 Worker(Socket s) {
330 Worker setDelay(int delay) {
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
Instrument.java 28 import com.google.caliper.worker.Worker;
120 public abstract Class<? extends Worker> workerClass();
124 * worker. Returns all instrument options by default.
154 * this instrument's worker.
  /packages/apps/Dialer/java/com/android/dialer/location/
CountryDetector.java 36 import com.android.dialer.common.concurrent.DialerExecutor.Worker;
244 /** Worker that given a {@link Location} returns an ISO 3166-1 two letter country code. */
245 private static class GeocodeCountryWorker implements Worker<Location, String> {
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
RuntimeWorker.java 17 package com.google.caliper.worker;
39 * A {@link Worker} base class for micro and pico benchmarks.
41 public abstract class RuntimeWorker extends Worker {
101 * A {@link Worker} for micro benchmarks.
127 * A {@link Worker} for pico benchmarks.
  /external/v8/src/
d8.cc 230 Worker* GetWorkerFromInternalField(Isolate* isolate, Local<Object> object) {
232 Throw(isolate, "this is not a Worker");
236 Worker* worker = local
237 static_cast<Worker*>(object->GetAlignedPointerFromInternalField(0));
238 if (worker == NULL) {
239 Throw(isolate, "Worker is defunct because main thread is terminating");
243 return worker;
411 i::List<Worker*> Shell::workers_;
1183 Worker* worker = GetWorkerFromInternalField(isolate, args.Holder()); local
1202 Worker* worker = GetWorkerFromInternalField(isolate, args.Holder()); local
1220 Worker* worker = GetWorkerFromInternalField(isolate, args.Holder()); local
2393 Worker* worker = static_cast<Worker*>(this_value->Value()); local
2812 Worker* worker = workers_copy[i]; local
    [all...]
  /external/valgrind/drd/tests/
tsan_thread_wrappers_pthread.h 346 MyThread(worker_t worker, void *arg = NULL, const char *name = NULL)
347 :w_(worker), arg_(arg), name_(name) {}
348 MyThread(void (*worker)(void), void *arg = NULL, const char *name = NULL)
349 :w_(reinterpret_cast<worker_t>(worker)), arg_(arg), name_(name) {}
350 MyThread(void (*worker)(void *), void *arg = NULL, const char *name = NULL)
351 :w_(reinterpret_cast<worker_t>(worker)), arg_(arg), name_(name) {}
507 MyThread *thread = new MyThread(&ThreadPool::Worker, this);
540 static void *Worker(void *p) {
  /external/webrtc/webrtc/sound/
alsasoundsystem.cc 22 #include "webrtc/base/worker.h"
101 // anything else on their worker threads, so snd_pcm_wait() is good enough.
236 private rtc::Worker {
281 // Inherited from Worker.
286 // Inherited from Worker.
322 // Inherited from Worker.
341 private rtc::Worker {
412 // Inherited from Worker.
417 // Inherited from Worker.
427 // Inherited from Worker
    [all...]
pulseaudiosoundsystem.cc 23 #include "webrtc/base/worker.h"
219 private rtc::Worker {
439 // Inherited from Worker.
446 // Inherited from Worker.
488 // Inherited from Worker.
582 private rtc::Worker {
836 // Inherited from Worker.
843 // Inherited from Worker.
855 // Inherited from Worker.
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceGlobalContext.cpp 222 for (std::thread &Worker : TranslationThreads) {
223 Worker.join();
230 for (std::thread &Worker : EmitterThreads) {
231 Worker.join();
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_threading.py 207 class Worker(threading.Thread):
220 t = Worker()
224 print " started worker thread"
232 # Now raise an exception in the worker thread.
234 print " waiting for worker thread to get started"
238 print " verifying worker hasn't exited"
241 print " attempting to raise asynch exception in worker"
245 print " waiting for worker to say it caught the exception"
249 print " all OK -- joining worker"
470 # Like the test above, but fork() was called from a worker thread
    [all...]
  /external/python/cpython2/Lib/test/
test_threading.py 207 class Worker(threading.Thread):
220 t = Worker()
224 print " started worker thread"
232 # Now raise an exception in the worker thread.
234 print " waiting for worker thread to get started"
238 print " verifying worker hasn't exited"
241 print " attempting to raise asynch exception in worker"
245 print " waiting for worker to say it caught the exception"
249 print " all OK -- joining worker"
486 # #12316 and #11870), and fork() from a worker thread is known to trigge
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
MissedCallNotifier.java 50 import com.android.dialer.common.concurrent.DialerExecutor.Worker;
60 public class MissedCallNotifier implements Worker<Pair<Integer, String>, Void> {
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_threading.py 209 class Worker(threading.Thread):
222 t = Worker()
226 print " started worker thread"
234 # Now raise an exception in the worker thread.
236 print " waiting for worker thread to get started"
240 print " verifying worker hasn't exited"
243 print " attempting to raise asynch exception in worker"
247 print " waiting for worker to say it caught the exception"
251 print " all OK -- joining worker"
450 # #12316 and #11870), and fork() from a worker thread is known to trigge
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_threading.py 209 class Worker(threading.Thread):
222 t = Worker()
226 print " started worker thread"
234 # Now raise an exception in the worker thread.
236 print " waiting for worker thread to get started"
240 print " verifying worker hasn't exited"
243 print " attempting to raise asynch exception in worker"
247 print " waiting for worker to say it caught the exception"
251 print " all OK -- joining worker"
450 # #12316 and #11870), and fork() from a worker thread is known to trigge
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading.py 209 class Worker(threading.Thread):
222 t = Worker()
226 print " started worker thread"
234 # Now raise an exception in the worker thread.
236 print " waiting for worker thread to get started"
240 print " verifying worker hasn't exited"
243 print " attempting to raise asynch exception in worker"
247 print " waiting for worker to say it caught the exception"
251 print " all OK -- joining worker"
450 # #12316 and #11870), and fork() from a worker thread is known to trigge
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threading.py 209 class Worker(threading.Thread):
222 t = Worker()
226 print " started worker thread"
234 # Now raise an exception in the worker thread.
236 print " waiting for worker thread to get started"
240 print " verifying worker hasn't exited"
243 print " attempting to raise asynch exception in worker"
247 print " waiting for worker to say it caught the exception"
251 print " all OK -- joining worker"
450 # #12316 and #11870), and fork() from a worker thread is known to trigge
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackActivity.java 83 private Worker mAlbumArtWorker;
97 mAlbumArtWorker = new Worker("album art worker");
    [all...]
  /external/v8/tools/profviz/
profviz.js 43 var worker = null;
47 worker = new Worker("worker.js");
50 worker.postMessage({ "call" : "load scripts",
53 worker.addEventListener("message", function(event) {
76 worker.postMessage({ 'call' : 'run', 'args' : args });
80 if (worker) worker.terminate();
230 worker.run(file, kResX, kResY, distortion, range[0], range[1])
284 var worker; variable
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/
ContactInfoCache.java 46 import com.android.dialer.common.concurrent.DialerExecutor.Worker;
84 // worker thread.
92 private static class CachedNumberLookupWorker implements Worker<CnapInformationWrapper, Void> {
533 * when image is loaded in worker thread.
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.jobs_3.5.300.v20130429-1813.jar 
  /external/guice/extensions/persist/lib/
hibernate-search.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ks.h     [all...]

Completed in 597 milliseconds

1 2 34 5 6