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

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_profiler.h 23 #define PROF_SPACE_SUBSTITUTION(profiler) profiler.profSpaceSubstitution()
24 #define PROF_SPACE_OMISSION(profiler) profiler.profSpaceOmission()
25 #define PROF_ADDITIONAL_PROXIMITY(profiler) profiler.profAdditionalProximity()
26 #define PROF_SUBSTITUTION(profiler) profiler.profSubstitution()
27 #define PROF_OMISSION(profiler) profiler.profOmission(
    [all...]
  /external/autotest/client/tests/profiler_test/
control 1 NAME = "Profiler Test"
8 Tests a profiler (adds it, starts it, waits a couple of seconds then it
9 stops it, generates the profiler report and removes it).
12 job.run_test('profiler_test', profiler='oprofile')
profiler_test.py 10 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.
15 @param profiler_args: Profiler non-keyword arguments.
16 @param profiler_dargs: Profiler keyword arguments.
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
    [all...]
  /external/autotest/client/bin/
profilers.py 8 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...]
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
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...]
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...]
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...]
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...]
  /test/vts/tools/vts-tradefed/res/push_groups/
RecordReplayTest.push 3 DATA/lib/android.hardware.audio@2.0-vts.profiler.so->system/lib/android.hardware.audio@2.0-vts.profiler.so
4 DATA/lib64/android.hardware.audio@2.0-vts.profiler.so->system/lib64/android.hardware.audio@2.0-vts.profiler.so
6 DATA/lib/android.hardware.audio.effect@2.0-vts.profiler.so->system/lib/android.hardware.audio.effect@2.0-vts.profiler.so
7 DATA/lib64/android.hardware.audio.effect@2.0-vts.profiler.so->system/lib64/android.hardware.audio.effect@2.0-vts.profiler.so
9 DATA/lib/android.hardware.automotive.evs@1.0-vts.profiler.so->system/lib/android.hardware.automotive.evs@1.0-vts.profiler.s
    [all...]
  /external/autotest/client/samples/
control.profilers 16 for profiler in ('readprofile', 'oprofile', 'catprofile', 'lockmeter'):
18 logging.info("Testing profiler %s", profiler)
19 job.profilers.add(profiler)
20 job.run_test('sleeptest', seconds=5, tag=profiler)
21 job.profilers.delete(profiler)
23 logging.error("Test of profiler %s failed", profiler)
  /external/syslinux/gpxe/src/include/gpxe/
profile.h 17 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
    [all...]
  /art/test/661-classloader-allocator/
info.txt 3 which crashed the JIT profiler.
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
package.html 11 <p>Poor man's profiler API</p>
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...]
Profiler.java 25 package org.slf4j.profiler;
34 // + Profiler [BAS]
37 // |--+ Profiler Y
45 * A poor man's profiler to measure the time elapsed performing some lengthy
50 public class Profiler implements TimeInstrument {
52 final static String PROFILER_MARKER_NAME = "PROFILER";
67 public Profiler(String name) {
106 public Profiler startNested(String name) {
108 Profiler nestedProfiler = new Profiler(name)
239 Profiler profiler = (Profiler) child; local
    [all...]
  /test/vts/tools/build/tasks/list/
vts_test_lib_hidl_package_list.mk 76 android.hardware.audio@2.0-vts.profiler \
77 android.hardware.audio.common@2.0-vts.profiler \
78 android.hardware.audio.effect@2.0-vts.profiler \
79 android.hardware.automotive.vehicle@2.0-vts.profiler \
80 android.hardware.biometrics.fingerprint@2.1-vts.profiler \
81 android.hardware.bluetooth@1.0-vts.profiler \
82 android.hardware.boot@1.0-vts.profiler \
83 android.hardware.broadcastradio@1.0-vts.profiler \
84 android.hardware.camera.common@1.0-vts.profiler \
85 android.hardware.camera.device@1.0-vts.profiler \
    [all...]
  /external/autotest/server/site_tests/native_Benchmarks/
control.octane 18 profiler = None
24 if 'profiler' in args_dict:
25 profiler = args_dict['profiler']
29 if profiler:
31 job.profilers.add(profiler, p_args)
41 if profiler:
42 job.profilers.delete (profiler)
control.vp8 18 profiler = None
24 if 'profiler' in args_dict:
25 profiler = args_dict['profiler']
29 if profiler:
31 job.profilers.add(profiler, p_args)
41 if profiler:
42 job.profilers.delete (profiler)
  /external/autotest/server/site_tests/telemetry_Crosperf/
control 20 profiler = None
26 if 'profiler' in args_dict:
27 profiler = args_dict['profiler']
31 if profiler:
33 job.profilers.add(profiler, p_args)
45 if profiler:
46 job.profilers.delete (profiler)
  /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.
  /test/vts/script/
run_cts_with_profiling.sh 25 # push profiler libs
26 adb push ${ANDROID_BUILD_TOP}/out/host/linux-x86/vts/android-vts/testcases/DATA/lib64/android.hardware.audio@2.0-vts.profiler.so system/lib64/
27 adb push ${ANDROID_BUILD_TOP}/out/host/linux-x86/vts/android-vts/testcases/DATA/lib64/android.hardware.audio.common@2.0-vts.profiler.so system/lib64/
28 adb push ${ANDROID_BUILD_TOP}/out/host/linux-x86/vts/android-vts/testcases/DATA/lib64/android.hardware.audio.effect@2.0-vts.profiler.so system/lib64/
29 adb push ${ANDROID_BUILD_TOP}/out/host/linux-x86/vts/android-vts/testcases/DATA/lib64/android.hardware.automotive.vehicle@2.0-vts.profiler.so system/lib64/
30 adb push ${ANDROID_BUILD_TOP}/out/host/linux-x86/vts/android-vts/testcases/DATA/lib64/android.hardware.automotive.vehicle@2.1-vts.profiler.so system/lib64/
31 adb push ${ANDROID_BUILD_TOP}/out/host/linux-x86/vts/android-vts/testcases/DATA/lib64/android.hardware.biometrics.fingerprint@2.1-vts.profiler.so system/lib64/
32 adb push ${ANDROID_BUILD_TOP}/out/host/linux-x86/vts/android-vts/testcases/DATA/lib64/android.hardware.bluetooth@1.0-vts.profiler.so system/lib64/
33 adb push ${ANDROID_BUILD_TOP}/out/host/linux-x86/vts/android-vts/testcases/DATA/lib64/android.hardware.boot@1.0-vts.profiler.so system/lib64/
34 adb push ${ANDROID_BUILD_TOP}/out/host/linux-x86/vts/android-vts/testcases/DATA/lib64/android.hardware.broadcastradio@1.0-vts.profiler.so system/lib64
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
os_darwin_arm64.go 9 // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand().
10 // runtime·nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
  /prebuilts/go/linux-x86/src/runtime/
os_darwin_arm64.go 9 // Currently cputicks() is used in blocking profiler and to seed runtime·fastrand().
10 // runtime·nanotime() is a poor approximation of CPU ticks that is enough for the profiler.
  /test/vts/compilation_tools/vtsc/code_gen/profiler/
ProfilerCodeGenBase.h 30 * Base class that generates the profiler code for HAL interfaces.
32 * generates the header and source file of the corresponding profiler.
34 * All the profiler generator for a particular HAL type (e.g. Hidl Hal,
43 // Generates both the header and source file for profiler.
47 // Generates the header file for profiler.
51 // Generates the source file for profiler.
56 // Generates the profiler code for scalar type.
61 // Generates the profiler code for string type.
66 // Generates the profiler code for enum type.
71 // Generates the profiler code for vector type
    [all...]
  /external/v8/src/inspector/
v8-profiler-agent-impl.h 12 #include "src/inspector/protocol/Profiler.h"
25 class V8ProfilerAgentImpl : public protocol::Profiler::Backend {
38 Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override;
43 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>*
46 std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>*
59 std::unique_ptr<protocol::Profiler::Profile> stopProfiling(
66 protocol::Profiler::Frontend m_frontend;

Completed in 275 milliseconds

1 2 3 4 5 6 7 8 91011>>