HomeSort by relevance Sort by last modified time
    Searched refs:instrument (Results 26 - 50 of 277) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/jacoco/org.jacoco.core/src/org/jacoco/core/instr/
Instrumenter.java 38 * Several APIs to instrument Java class definitions for coverage tracing.
78 public byte[] instrument(final ClassReader reader) { method in class:Instrumenter
105 public byte[] instrument(final byte[] buffer, final String name) method in class:Instrumenter
108 return instrument(new ClassReader(buffer));
127 public byte[] instrument(final InputStream input, final String name) method in class:Instrumenter
135 return instrument(bytes, name);
153 public void instrument(final InputStream input, final OutputStream output, method in class:Instrumenter
155 output.write(instrument(input, name)); method
194 instrument(detector.getInputStream(), output, name);
  /frameworks/base/core/tests/coretests/src/android/database/
run_newdb_perf_test.sh 26 adb shell am instrument -e class 'android.database.NewDatabasePerformanceTestSuite' -w 'com.android.frameworks.coretests/android.support.test.runner.AndroidJUnitRunner'
  /frameworks/base/core/tests/systemproperties/
run_core_systemproperties_test.sh 24 adb shell am instrument -w -e class android.os.SystemPropertiesTest com.android.frameworks.coretests.systemproperties/android.test.InstrumentationTestRunner
  /development/testrunner/
am_instrument_parser.py 18 """Module that assists in parsing the output of "am instrument" commands run on
26 """Given the raw output of an "am instrument" command that targets and
30 result (string): Raw output of "am instrument"
68 """Given the raw output of "am instrument" returns a dictionary of the
73 result (string): Raw output of "am instrument"
  /build/make/core/
jacoco.mk 38 # make a task that unzips the classes that we want to instrument from the
40 my_unzipped_path := $(my_files)/work/classes-to-instrument/classes
41 my_unzipped_timestamp_path := $(my_files)/work/classes-to-instrument/updated.stamp
86 instrument \
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GlAppSwitchTest.java 69 Instrumentation instrument = getInstrumentation(); local
70 Context context = instrument.getContext();
79 instrument.waitForIdleSync();
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
CoverageTransformer.java 14 import java.lang.instrument.ClassFileTransformer;
15 import java.lang.instrument.IllegalClassFormatException;
25 * Class file transformer to instrument classes for code coverage analysis.
91 return instrumenter.instrument(classfileBuffer, classname);
PreMain.java 14 import java.lang.instrument.Instrumentation;
  /external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
Instrument.java 32 * The <code>instrument</code> command.
34 public class Instrument extends Command {
39 @Argument(usage = "list of folder or files to instrument recusively", metaVar = "<sourcefiles>")
58 total += instrument(s, new File(absoluteDest, s.getName()));
77 total += instrument(src, dest);
82 private int instrument(final File src, final File dest) throws IOException { method in class:Instrument
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
AllocationInstrumentTest.java 50 AllocationInstrument instrument = new AllocationInstrument(); local
53 instrument.setOptions(ImmutableMap.of("allocationAgentJar", fakeJar.getAbsolutePath()));
64 assertEquals(expected, instrument.getExtraCommandLineArgs(vmConfig));
71 .instrument("allocation")
BadUserCodeTest.java 138 .instrument("allocation")
154 .instrument("allocation")
185 .instrument("allocation")
195 .instrument("allocation")
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/
InstrumentationTimeScenario.java 42 instr.instrument(bytes, "TestTarget");
  /external/valgrind/drd/
drd_load_store.h 42 IRSB* DRD_(instrument)(VgCallbackClosure* const closure,
  /packages/providers/ContactsProvider/
run-all-tests.sh 31 adb shell am instrument -w "${@}" |& tee $log
  /cts/common/device-side/test-app/
run_tests.sh 42 java $RDBG_FLAG -cp ${JAR_PATH} ${TF_CONSOLE} run singleCommand instrument --serial ${SERIAL} --package ${COMMON_PACKAGE} --runner ${RUNNER}
  /device/google/cuttlefish_common/tests/ril/
runtests.sh 30 adb shell am instrument -w "$@" 'com.android.cuttlefish.ril.tests/android.support.test.runner.AndroidJUnitRunner'
  /device/google/cuttlefish_common/tests/wifi/
runtests.sh 30 adb shell am instrument -w "$@" 'com.android.cuttlefish.wifi.tests/android.support.test.runner.AndroidJUnitRunner'
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ExperimentingRunnerModule.java 25 import com.google.caliper.runner.Instrument.Instrumentation;
153 * {@link Instrument instruments} passed to {@link #provideInstruments},
157 Class<? extends Instrument> value();
162 static Instrument provideArbitraryMeasurementInstrument() {
168 static Instrument provideAllocationInstrument() {
174 static Instrument provideRuntimeInstrument(
180 static ImmutableSet<Instrument> provideInstruments(
183 Map<Class<? extends Instrument>, Provider<Instrument>> availableInstruments,
188 ImmutableSet.Builder<Instrument> builder = ImmutableSet.builder()
208 Instrument instrument = instrumentProvider.get(); local
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
BoundsChecking.cpp 64 bool instrument(Value *Ptr, Value *Val, const DataLayout &DL);
121 /// instrument - adds run-time bounds checks to memory accessing instructions.
126 bool BoundsChecking::instrument(Value *Ptr, Value *InstVal, function in class:BoundsChecking
129 DEBUG(dbgs() << "Instrument " << *Ptr << " for " << Twine(NeededSize)
193 MadeChange |= instrument(LI->getPointerOperand(), LI, DL);
196 instrument(SI->getPointerOperand(), SI->getValueOperand(), DL);
199 instrument(AI->getPointerOperand(), AI->getCompareOperand(), DL);
202 instrument(AI->getPointerOperand(), AI->getValOperand(), DL);
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
ApkInstrumentationPreparer.java 47 @Option(name = "apk", description = "Name of the apk to instrument", mandatory = true)
57 @Option(name = "when", description = "When to instrument the apk", mandatory = true)
77 if (instrument(device, buildInfo)) {
84 throw new TargetSetupError("Couldn't find apk to instrument", e,
102 instrument(device, buildInfo); method
104 logError("Couldn't find apk to instrument");
109 private boolean instrument(ITestDevice device, IBuildInfo buildInfo) method in class:ApkInstrumentationPreparer
  /external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
InstrumentTask.java 88 total += instrument(instrumenter, resource);
94 private int instrument(final Instrumenter instrumenter, method in class:InstrumentTask
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
ModifiedSystemClassRuntimeTest.java 20 import java.lang.instrument.ClassFileTransformer;
21 import java.lang.instrument.Instrumentation;
  /frameworks/opt/net/wifi/tests/wifitests/
runtests.sh 43 adb shell am instrument --no-hidden-api-checks -w "$@" \
  /packages/apps/ManagedProvisioning/tools/bash/
coverage.sh 61 adb shell am instrument -e coverage true -e size small -w "$TEST_RUNNER"
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
racewalk.go 14 // The instrument pass modifies the code tree for instrumentation.
31 // TODO(dvyukov): do not instrument initialization as writes:
34 // Do not instrument the following packages at all,
54 func instrument(fn *Node) { func
85 s := fmt.Sprintf("after instrument %v", fn.Func.Nname.Sym)
118 Dump("instrument-before", n)
122 Fatalf("instrument: bad init list")
142 Fatalf("instrument: unknown node type %v", n.Op)
181 // instrument it here, typedslicecopy is manually
345 Fatalf("instrument: %v must be lowered by now", n.Op
    [all...]

Completed in 711 milliseconds

12 3 4 5 6 7 8 91011>>