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

1 2 3 4 5

  /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;
  /external/chromium-trace/catapult/systrace/profile_chrome/
controllers_unittest.py 7 from profile_chrome import profiler namespace
17 self.package_info = profiler.GetSupportedBrowsers()[self.browser]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
profiler_finder.py 8 from telemetry.internal.platform import profiler namespace
15 profiler.Profiler,
android_screen_recorder_profiler.py 11 from telemetry.internal.platform import profiler namespace
18 class AndroidScreenRecordingProfiler(profiler.Profiler):
netlog_profiler.py 8 from telemetry.internal.platform import profiler namespace
11 class NetLogProfiler(profiler.Profiler):
v8_profiler.py 9 from telemetry.internal.platform import profiler namespace
12 class V8Profiler(profiler.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
  /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;
  /external/autotest/client/bin/
profiler.py 1 class profiler: class in inherits:
  /external/autotest/client/profilers/catprofile/
catprofile.py 9 from autotest_lib.client.bin import profiler namespace
11 class catprofile(profiler.profiler):
  /external/autotest/client/profilers/cpistat/
cpistat.py 8 from autotest_lib.client.bin import profiler namespace
10 class cpistat(profiler.profiler):
  /external/autotest/client/profilers/lockmeter/
lockmeter.py 13 from autotest_lib.client.bin import utils, profiler namespace
15 class lockmeter(profiler.profiler):
  /external/autotest/client/profilers/mpstat/
mpstat.py 5 from autotest_lib.client.bin import profiler namespace
8 class mpstat(profiler.profiler):
  /external/autotest/client/profilers/vmstat/
vmstat.py 8 from autotest_lib.client.bin import profiler namespace
11 class vmstat(profiler.profiler):

Completed in 2046 milliseconds

1 2 3 4 5