HomeSort by relevance Sort by last modified time
    Searched defs:profiler (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/vogar/src/vogar/target/
ProfilerRunListener.java 21 import vogar.target.Profiler;
24 * A {@link RunListener} that will notify the {@link Profiler} before and after the start of every
28 private final Profiler profiler; field in class:ProfilerRunListener
30 public ProfilerRunListener(Profiler profiler) {
31 this.profiler = profiler;
36 profiler.start();
41 profiler.stop()
    [all...]
MainTargetRunner.java 45 public boolean run(Profiler profiler) {
48 if (profiler != null) {
49 profiler.start();
57 if (profiler != null) {
58 profiler.stop();
CaliperTargetRunner.java 43 public boolean run(Profiler profiler) {
64 // as otherwise the profiler just profiles the main Caliper process rather than the
72 if (profiler != null) {
73 profiler.start();
82 if (profiler != null) {
83 profiler.stop();
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
PackageTest.java 25 package org.slf4j.profiler;
BasicProfilerDemo.java 25 package org.slf4j.profiler;
44 + Profiler [BASIC]
56 // create a profiler called "BASIC"
57 Profiler profiler = new Profiler("BASIC"); local
58 profiler.start("A");
61 profiler.start("B");
64 profiler.start("OTHER");
66 profiler.stop().print()
    [all...]
NestedProfilerDemo.java 25 package org.slf4j.profiler;
43 + Profiler [DEMO]
45 |---+ Profiler [SORT_AND_PRUNE]
58 // create a profiler called "DEMO"
59 Profiler profiler = new Profiler("DEMO"); local
61 // register this profiler in the thread context's profiler registry
63 profiler.registerWith(profilerRegistry)
    [all...]
NestedProfilerDemo2.java 25 package org.slf4j.profiler;
44 Profiler profiler = new Profiler("DEMO"); local
45 // associate a logger with the profiler
46 profiler.setLogger(logger);
49 profiler.registerWith(profilerRegistry);
51 profiler.start("RANDOM");
56 profiler.startNested(SortAndPruneComposites.NESTED_PROFILER_NAME);
62 profiler.stop().log()
    [all...]
ProfilerTest.java 25 package org.slf4j.profiler;
41 Profiler profiler = new Profiler("SMOKE"); local
42 profiler.stop();
43 StopWatch gSW = profiler.globalStopWatch;
46 profiler.sanityCheck();
48 assertEquals(0, profiler.childTimeInstrumentList.size());
49 assertNull(profiler.getLastTimeInstrument());
53 Profiler profiler = new Profiler("BAS") local
85 Profiler profiler = new Profiler("BAS"); local
    [all...]
RandomIntegerArrayGenerator.java 25 package org.slf4j.profiler;
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
ProfilerRegistry.java 25 package org.slf4j.profiler;
39 Map<String, Profiler> profilerMap = new HashMap<String, Profiler>();
41 public void put(Profiler profiler) {
42 put(profiler.getName(), profiler); local
45 public void put(String name, Profiler profiler) {
46 profilerMap.put(name, profiler);
    [all...]
TimeInstrumentStatus.java 30 package org.slf4j.profiler;
DurationUnit.java 25 package org.slf4j.profiler;
SpacePadder.java 25 package org.slf4j.profiler;
TimeInstrument.java 25 package org.slf4j.profiler;
29 * {@link Profiler} and {@link StopWatch} classes. It settles the
30 * general feel of the profiler package.
73 * this time instrument. Note that {@link StopWatch} instances cannot log while {@link Profiler}
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
MalformedHprofException.java 17 package dalvik.system.profiler;
ThreadSampler.java 17 package dalvik.system.profiler;
22 * The {@code ThreadSampler} interfaces allows a profiler to choose
PortableThreadSampler.java 17 package dalvik.system.profiler;
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
Profiler.java 17 package com.android.camera.stats.profiler;
23 public interface Profiler {
Writer.java 17 package com.android.camera.stats.profiler;
Profile.java 17 package com.android.camera.stats.profiler;
  /external/autotest/client/bin/
profiler.py 1 class profiler: class in inherits:
  /external/swiftshader/src/Main/
Config.cpp 22 Profiler profiler; member in namespace:sw
24 Profiler::Profiler()
29 void Profiler::reset()
55 void Profiler::nextFrame()
  /tools/tradefederation/core/src/com/android/tradefed/profiler/
IAggregatingTestProfiler.java 1 package com.android.tradefed.profiler;
3 import com.android.tradefed.profiler.recorder.IMetricsRecorder;
10 * This interface should be used for any profiler which sends different metrics for {@link
15 * Return a description of this test profiler.
27 * Return a {@link List} of all {@link IMetricsRecorder}s used by this profiler.
ITestProfiler.java 17 package com.android.tradefed.profiler;
22 import com.android.tradefed.profiler.recorder.IMetricsRecorder;
35 * Set up the test profiler.
60 * Send all of the metrics recorded by this profiler to an {@link ITestInvocationListener}.
MetricOutputData.java 17 package com.android.tradefed.profiler;

Completed in 1549 milliseconds

1 2 3 4