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

1 23 4 5 6

  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
ExperimentingRunnerModuleTest.java 29 import com.google.caliper.worker.Worker;
131 public Class<? extends Worker> workerClass() {
  /external/toolchain-utils/bestflags/
example_algorithms.py 168 pipeline_worker.Worker, build_test)
172 pipeline_worker.Worker, test_steering)
  /external/v8/tools/testrunner/local/
pool.py 44 def Worker(fn, work_queue, done_queue, done,
46 """Worker to be run in a child process.
47 The worker stops on two conditions. 1. When the poison pill "STOP" is
67 """Distributes tasks to a number of worker processes.
82 # worker takes an item from the work_queue and before the result is
83 # submitted to the done_queue. It is equal when no worker is working,
96 """Maps function "fn" to items in generator "gen" on the worker processes
104 process_context_fn: Function executed once by each worker. Expected to
117 p = Process(target=Worker, args=(fn,
143 # A keyboard interrupt happened in one of the worker processes
    [all...]
  /frameworks/support/room/rxjava2/src/main/java/android/arch/persistence/room/
RxRoom.java 129 public Worker createWorker() {
131 return new Worker() {
  /packages/apps/Dialer/java/com/android/dialer/app/calllog/
VisualVoicemailUpdateTask.java 31 import com.android.dialer.common.concurrent.DialerExecutor.Worker;
40 class VisualVoicemailUpdateTask implements Worker<VisualVoicemailUpdateTask.Input, Void> {
  /packages/apps/Dialer/java/com/android/dialer/calllog/
RefreshAnnotatedCallLogWorker.java 33 import com.android.dialer.common.concurrent.DialerExecutor.Worker;
38 * Worker which brings the annotated call log up to date, if necessary.
42 public class RefreshAnnotatedCallLogWorker implements Worker<Boolean, Void> {
  /device/linaro/bootloader/edk2/CryptoPkg/Library/IntrinsicLib/Ia32/
MathLShiftS64.S 18 # 64-bit Math Worker Function.
MathRShiftU64.S 18 # 64-bit Math Worker Function.
  /device/linaro/bootloader/edk2/StdLib/LibC/CRT/Ia32/
ashrdi3.S 18 # 64-bit Math Worker Function.
mulll.S 18 # 64-bit Math Worker Function.
shldi3.S 18 # 64-bit Math Worker Function.
udivdi3.S 18 # 64-bit Math Worker Function.
umoddi3.S 18 # 64-bit Math Worker Function.
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
ArbitraryMeasurementWorker.java 17 package com.google.caliper.worker;
33 * Worker for arbitrary measurements.
35 public final class ArbitraryMeasurementWorker extends Worker {
WorkerMain.java 17 package com.google.caliper.worker;
31 * the benchmark and hands it off to the instrument's worker.
50 Worker worker = workerComponent.getWorker(); local
55 worker.setUpBenchmark();
57 worker.bootstrap();
62 worker.preMeasure(isInWarmup);
65 ShouldContinueMessage message = log.notifyMeasurementEnding(worker.measure());
69 worker.postMeasure();
76 worker.tearDownBenchmark()
    [all...]
MacrobenchmarkWorker.java 17 package com.google.caliper.worker;
39 * The {@link Worker} implementation for macrobenchmarks.
41 public class MacrobenchmarkWorker extends Worker {
MicrobenchmarkAllocationWorker.java 17 package com.google.caliper.worker;
31 * The {@link Worker} for the {@code AllocationInstrument}. This class invokes the benchmark method
35 public final class MicrobenchmarkAllocationWorker extends Worker {
  /external/v8/tools/foozzie/
v8_mock.js 84 // Mock Worker.
92 Worker = function(code){
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
AllocationInstrument.java 29 import com.google.caliper.worker.MacrobenchmarkAllocationWorker;
30 import com.google.caliper.worker.MicrobenchmarkAllocationWorker;
31 import com.google.caliper.worker.Worker;
116 public Class<? extends Worker> workerClass() {
157 public Class<? extends Worker> workerClass() {
197 * This instrument's worker requires the allocationinstrumenter agent jar, specified
198 * on the worker VM's command line with "-javaagent:[jarfile]".
RuntimeInstrument.java 44 import com.google.caliper.worker.MacrobenchmarkWorker;
45 import com.google.caliper.worker.RuntimeWorker;
46 import com.google.caliper.worker.Worker;
152 public Class<? extends Worker> workerClass() {
217 @Override public Class<? extends Worker> workerClass() {
237 @Override public Class<? extends Worker> workerClass() {
  /external/clang/test/FixIt/
fixit.cpp 238 class Worker {
244 wrapped_ptr<Worker> worker(new Worker);
245 worker.DoSomething(); // expected-error {{no member named 'DoSomething' in 'arrow_suggest::wrapped_ptr<arrow_suggest::Worker>'; did you mean to use '->' instead of '.'?}}
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PipedInputStreamTest.java 331 static class Worker extends Thread {
334 Worker(PipedOutputStream pos) {
352 Thread worker = new Worker(out); local
353 worker.start();
356 worker.join();
  /packages/apps/Dialer/java/com/android/dialer/calldetails/
ReportDialogFragment.java 33 import com.android.dialer.common.concurrent.DialerExecutor.Worker;
101 Worker<String, CachedContactInfo> worker = local
106 .createUiTaskBuilder(getFragmentManager(), "lookup_contact_info", worker)
124 Worker<Context, Pair<Context, Boolean>> worker = this::reportCallerId; local
128 .createUiTaskBuilder(getFragmentManager(), "report_caller_id", worker)
  /external/gemmlowp/internal/
multi_thread_gemm.h 105 // (e.g. worker threads having finished a GEMM and waiting until the next GEMM)
146 // This is how the master thread waits for all the worker threads
205 // A workload for a worker.
213 // A worker thread.
214 class Worker {
223 explicit Worker(BlockingCounter* counter_to_decrement_when_ready)
232 ~Worker() {
237 // Changes State; may be called from either the worker thread
241 ScopedProfilingLabel label("Worker::ChangeState");
269 ScopedProfilingLabel label("Worker::ThreadFunc")
    [all...]
  /external/v8/src/
d8.h 232 class Worker {
234 Worker();
235 ~Worker();
237 // Run the given script on this Worker. This function should only be called
238 // once, and should only be called by the thread that created the Worker.
240 // Post a message to the worker's incoming message queue. The worker will
242 // This function should only be called by the thread that created the Worker.
244 // Synchronously retrieve messages from the worker's outgoing message queue.
246 // If there are no messages in the queue and the worker is no longer running
    [all...]

Completed in 991 milliseconds

1 23 4 5 6