/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
ArbitraryMeasurementInstrument.java | 30 import com.google.caliper.worker.ArbitraryMeasurementWorker; 31 import com.google.caliper.worker.Worker; 104 public Class<? extends Worker> workerClass() {
|
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() {
|
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.
|
/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...] |
/packages/apps/Dialer/java/com/android/dialer/calllog/ |
RefreshAnnotatedCallLogWorker.java | 31 import com.android.dialer.common.concurrent.DialerExecutor.Worker; 35 * Worker which brings the annotated call log up to date, if necessary. 40 public class RefreshAnnotatedCallLogWorker implements Worker<Boolean, Boolean> {
|
/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/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();
|
/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) {
|