Searched refs:profiler (Results 1 - 25 of 88) sorted by relevance

1234

/external/syslinux/gpxe/src/include/gpxe/
H A Dprofile.h17 union profiler { union
31 * Static per-object profiler, for use with simple_profile()
33 static union profiler simple_profiler;
38 * @v profiler Profiler data structure
46 * profile ( &profiler );
48 * printf ( "It took %ld ticks to execute\n", profile ( &profiler ) );
53 profile ( union profiler *profiler ) {
54 uint64_t last_timestamp = profiler->timestamp;
57 "=a" ( profiler
[all...]
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
H A DProfilerTest.java25 package org.slf4j.profiler;
41 Profiler profiler = new Profiler("SMOKE");
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");
55 profiler.start("doX");
58 profiler
[all...]
H A DBasicProfilerDemo.java25 package org.slf4j.profiler;
56 // create a profiler called "BASIC"
57 Profiler profiler = new Profiler("BASIC");
58 profiler.start("A");
61 profiler.start("B");
64 profiler.start("OTHER");
66 profiler.stop().print();
H A DNestedProfilerDemo.java25 package org.slf4j.profiler;
58 // create a profiler called "DEMO"
59 Profiler profiler = new Profiler("DEMO");
61 // register this profiler in the thread context's profiler registry
63 profiler.registerWith(profilerRegistry);
66 profiler.start("RANDOM");
71 // create and start a nested profiler called "SORT_AND_PRUNE"
73 // profiler, and the previous registration of the parent profiler,
[all...]
H A DNestedProfilerDemo2.java25 package org.slf4j.profiler;
44 Profiler profiler = new Profiler("DEMO");
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();
H A DPackageTest.java25 package org.slf4j.profiler;
H A DRandomIntegerArrayGenerator.java25 package org.slf4j.profiler;
/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
H A DDurationUnit.java25 package org.slf4j.profiler;
H A DTimeInstrumentStatus.java30 package org.slf4j.profiler;
H A DProfilerRegistry.java25 package org.slf4j.profiler;
41 public void put(Profiler profiler) { argument
42 put(profiler.getName(), profiler);
45 public void put(String name, Profiler profiler) { argument
46 profilerMap.put(name, profiler);
H A DTimeInstrument.java25 package org.slf4j.profiler;
30 * general feel of the profiler package.
/external/autotest/client/bin/
H A Dprofilers.py8 def load_profiler(self, profiler, args, dargs):
9 prof_dir = os.path.join(self.job.autodir, "profilers", profiler)
12 self.job.install_pkg(profiler, "profiler", prof_dir)
17 raise profiler_manager.ProfilerNotPresentError(profiler)
20 profiler, "autotest_lib.client.profilers.%s" % profiler)
22 newprofiler = getattr(profiler_module, profiler)(self.job)
24 newprofiler.name = profiler
27 newprofiler.tmpdir = os.path.join(self.tmpdir, profiler)
[all...]
H A Dprofiler.py1 class profiler: class in inherits:
/external/python/cpython2/Lib/test/
H A Dtest_hotshot.py65 def run_test(self, callable, events, profiler=None):
66 if profiler is None:
67 profiler = self.new_profiler()
68 self.assertTrue(not profiler._prof.closed)
69 profiler.runcall(callable)
70 self.assertTrue(not profiler._prof.closed)
71 profiler.close()
72 self.assertTrue(profiler._prof.closed)
78 profiler = self.new_profiler()
79 profiler
[all...]
/external/autotest/client/profilers/mpstat/
H A Dmpstat.py5 from autotest_lib.client.bin import profiler namespace
8 class mpstat(profiler.profiler):
/external/autotest/client/profilers/vmstat/
H A Dvmstat.py8 from autotest_lib.client.bin import profiler namespace
11 class vmstat(profiler.profiler):
/external/autotest/server/
H A Dstandalone_profiler.py16 # Client control file snippet used to synchronize profiler start & stop.
24 def _encode_args(profiler, args, dargs):
25 parts = [repr(profiler)]
40 string (the profiler name), second argument is a tuple with the
41 non keyword arguments to give to the profiler when being added
53 for profiler in profilers:
55 % _encode_args(*profiler))
62 for profiler in reversed(profilers):
63 control_file.append("job.profilers.delete('%s')" % profiler[0])
/external/autotest/client/profilers/catprofile/
H A Dcatprofile.py9 from autotest_lib.client.bin import profiler namespace
11 class catprofile(profiler.profiler):
/external/autotest/client/profilers/cpistat/
H A Dcpistat.py8 from autotest_lib.client.bin import profiler namespace
10 class cpistat(profiler.profiler):
/external/autotest/client/profilers/custom_perf/
H A Dcustom_perf.py7 from autotest_lib.client.bin import profiler, os_dep namespace
11 class custom_perf(profiler.profiler):
13 This is a profiler class for the perf profiler in ChromeOS. It differs from
/external/autotest/client/profilers/powertop/
H A Dpowertop.py7 from autotest_lib.client.bin import utils, profiler namespace
9 class powertop(profiler.profiler):
/external/autotest/client/tests/profiler_test/
H A Dprofiler_test.py10 def initialize(self, profiler=None, profiler_args=(), profiler_dargs=None):
12 Initialize this test with the profiler name, args and dargs.
14 @param profiler: Profiler name.
18 if not profiler:
19 raise error.TestError('No profiler specified.')
20 self._profiler = profiler
27 Add and start the profiler, sleep some seconds, stop and delete it.
32 @param seconds: Number of seconds to sleep while the profiler is
44 # TODO: check for profiler result files?
/external/chromium-trace/catapult/systrace/profile_chrome/
H A Dprofiler_unittest.py9 from profile_chrome import profiler namespace
25 result = profiler.CaptureProfile(self._tracing_options, 1, [fake_agent_1])
36 result = profiler.CaptureProfile(self._tracing_options, 1,
49 result = profiler.CaptureProfile(self._tracing_options, 1,
/external/v8/src/profiler/
H A Dheap-snapshot-generator-inl.h8 #include "src/profiler/heap-snapshot-generator.h"
20 return snapshot()->profiler()->isolate();
55 Isolate* HeapEntry::isolate() const { return snapshot_->profiler()->isolate(); }
/external/autotest/client/profilers/cmdprofile/
H A Dcmdprofile.py7 from autotest_lib.client.bin import profiler namespace
10 class cmdprofile(profiler.profiler):

Completed in 507 milliseconds

1234