Home
last modified time | relevance | path

Searched refs:Worker (Results 1 – 25 of 98) sorted by relevance

1234

/external/drm_hwcomposer/
Dworker.cpp34 Worker::Worker(const char *name, int priority) in Worker() function in android::Worker
38 Worker::~Worker() { in ~Worker()
47 int Worker::InitWorker() { in InitWorker()
75 bool Worker::initialized() const { in initialized()
79 int Worker::Lock() { in Lock()
83 int Worker::Unlock() { in Unlock()
87 int Worker::SignalLocked() { in SignalLocked()
91 int Worker::ExitLocked() { in ExitLocked()
103 int Worker::Signal() { in Signal()
120 int Worker::Exit() { in Exit()
[all …]
Dworker.h26 class Worker {
40 Worker(const char *name, int priority);
41 virtual ~Worker();
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
DWorkerModule.java46 private final Class<? extends Worker> workerClass;
52 this.workerClass = workerSpec.workerClass.asSubclass(Worker.class); in WorkerModule()
65 Worker provideWorker(Map<Class<? extends Worker>, Provider<Worker>> availableWorkers) { in provideWorker() argument
66 Provider<Worker> workerProvider = availableWorkers.get(workerClass); in provideWorker()
80 Class<? extends Worker> value(); in value()
85 static Worker provideArbitraryMeasurementWorker(ArbitraryMeasurementWorker impl) { in provideArbitraryMeasurementWorker()
91 static Worker provideMicrobenchmarkAllocationWorker(MicrobenchmarkAllocationWorker impl) { in provideMicrobenchmarkAllocationWorker()
97 static Worker provideMacrobenchmarkWorker(MacrobenchmarkWorker impl) { in provideMacrobenchmarkWorker()
103 static Worker provideMacrobenchmarkAllocationWorker(MacrobenchmarkAllocationWorker impl) { in provideMacrobenchmarkAllocationWorker()
109 static Worker provideRuntimeWorkerMicro(RuntimeWorker.Micro impl) { in provideRuntimeWorkerMicro()
[all …]
/external/webrtc/webrtc/base/
Dworker.cc23 Worker::Worker() : worker_thread_(NULL) {} in Worker() function in rtc::Worker
25 Worker::~Worker() { in ~Worker()
32 bool Worker::StartWork() { in StartWork()
49 bool Worker::StopWork() { in StopWork()
64 void Worker::HaveWork() { in HaveWork()
69 void Worker::OnMessage(rtc::Message *msg) { in OnMessage()
Dworker.h32 class Worker : private MessageHandler {
34 Worker();
37 ~Worker() override;
67 RTC_DISALLOW_COPY_AND_ASSIGN(Worker);
Dsignalthread.h103 class Worker : public Thread {
105 explicit Worker(SignalThread* parent) : parent_(parent) {} in Worker() function
106 ~Worker() override;
112 RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(Worker);
142 Worker worker_;
/external/valgrind/drd/tests/
Dtsan_unittest.cpp335 void Worker() { in Worker() function
340 MyThread t(Worker); in Parent()
649 void Worker() { in Worker() function
654 MyThread t(Worker); in Parent()
749 void Worker() { in Worker() function
762 MyThreadArray t(Worker, Worker); in Parent()
996 void Worker() { in Worker() function
1014 MyThreadArray t(Worker, Worker); in Run()
1030 void Worker() { in Worker() function
1048 MyThreadArray t(Worker, Worker, Worker); in Run()
[all …]
/external/v8/test/mjsunit/regress/
Dregress-4271.js5 if (this.Worker) {
8 Worker.prototype.terminate(); class
12 Worker.prototype.getMessage();
16 Worker.prototype.postMessage({});
20 var worker = new Worker('');
Dregress-crbug-518747.js5 if (this.Worker) {
6 Worker.prototype = 12; class
7 var __v_6 = new Worker('');
Dregress-crbug-503698.js7 if (this.Worker) {
8 var __v_6 = new Worker('');
Dregress-crbug-504727.js7 if (this.Worker) {
8 var __v_2 = new Worker('');
Dregress-crbug-505778.js5 if (this.Worker) {
6 var __v_7 = new Worker('onmessage = function() {}');
Dregress-4279.js5 if (this.Worker && this.quit) {
7 new Function(new Worker("55"));
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DThreadTest.java21 private ArrayList<Worker> threads = new ArrayList<Worker>();
31 Worker thread = new Worker(); in TestThreads()
36 for (Worker thread: threads) { in TestThreads()
54 private class Worker extends Thread { class in ThreadTest
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DThreadTest.java25 private ArrayList<Worker> threads = new ArrayList<Worker>();
35 Worker thread = new Worker(); in TestThreads()
40 for (Worker thread: threads) { in TestThreads()
58 private class Worker extends Thread { class in ThreadTest
/external/clang/test/Sema/
Dattr-capabilities.c27 ThreadRole GUI, Worker; variable
29 void Func2(void) __attribute__((requires_shared_capability(Worker))) {} in Func2()
61 void Func28(void) __attribute__((requires_capability(GUI && Worker)));
62 void Func29(void) __attribute__((requires_capability(GUI || Worker)));
63 void Func30(void) __attribute__((requires_capability((Worker || Worker) && !GUI)));
/external/libchrome/base/threading/
Dsequenced_worker_pool.cc229 class SequencedWorkerPool::Worker : public SimpleThread { class in base::SequencedWorkerPool
233 Worker(const scoped_refptr<SequencedWorkerPool>& worker_pool,
236 ~Worker() override;
242 static Worker* GetForCurrentThread();
274 static LazyInstance<ThreadLocalPointer<SequencedWorkerPool::Worker>>::Leaky
287 DISALLOW_COPY_AND_ASSIGN(Worker);
336 void ThreadLoop(Worker* this_worker);
451 typedef std::map<PlatformThreadId, linked_ptr<Worker> > ThreadMap;
506 SequencedWorkerPool::Worker::Worker( in Worker() function in base::SequencedWorkerPool::Worker
517 SequencedWorkerPool::Worker::~Worker() { in ~Worker()
[all …]
/external/vulkan-validation-layers/demos/smoke/
DSmoke.h58 class Worker {
60 Worker(Smoke &smoke, int index, int object_begin, int object_end);
88 static void thread_loop(Worker *worker) { worker->update_loop(); } in thread_loop()
128 std::vector<std::unique_ptr<Worker>> workers_;
190 void update_simulation(const Worker &worker);
192 void draw_objects(Worker &worker);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/stress/
DParallelTest.java34 Worker worker = new Worker(i, doc); in testPerfomance()
47 private class Worker implements Runnable { class in ParallelTest
51 public Worker(int id, String doc) { in Worker() method in ParallelTest.Worker
/external/clang/test/SemaCXX/
Darrow-operator.cpp53 class Worker { class
60 wrapped_ptr<Worker> worker(new Worker); in test()
/external/v8/test/mjsunit/
Dd8-worker.js92 if (this.Worker) {
101 var w = new Worker(workerScript);
134 var w2 = new Worker('');
Dd8-worker-sharedarraybuffer.js30 if (this.Worker) {
49 var w = new Worker(workerScript);
88 workers[id] = new Worker(workerScript);
Dregress-4399.js6 if (this.Worker) {
7 assertThrows(function() { Worker.prototype.constructor("55"); }); class
/external/valgrind/none/tests/darwin/
Dbug228343.c35 void *Worker() { in Worker() function
53 pthread_create(&w_1, NULL, Worker, NULL); in main()
54 pthread_create(&w_2, NULL, Worker, NULL); in main()
/external/opencv3/samples/gpu/
Dmulti.cpp47 struct Worker { void operator()(int device_id) const; }; struct
73 tbb::parallel_do(devices, devices + 2, Worker()); in main()
79 void Worker::operator()(int device_id) const in operator ()()

1234