/external/autotest/client/tests/linus_stress/ |
linus_stress.py | 27 profilers = self.job.profilers 28 if profilers.present(): 29 profilers.start(self) 34 if profilers.present(): 35 profilers.stop(self) 36 profilers.report(self)
|
/external/autotest/server/samples/ |
profilertest.srv | 7 def add_profilers(at, profilers, timeout_sync, timeout_start, timeout_stop, 10 for profiler in profilers: 11 control_file.append("job.profilers.add(%s)" 20 for profiler in profilers: 21 control_file.append("job.profilers.delete('%s')" % profiler[0]) 28 # wait until the profilers have started 35 # wait until the profilers have started 59 profilers = [["vmstat"], ["iostat"]] 64 tests.append(add_profilers(at, profilers, timeout_sync,
|
/external/autotest/client/samples/ |
control.profilers | 3 NAME = "Sample - More profilers" 9 Runs sleeptest with differnt profilers present in the autotest tree. Also, 19 job.profilers.add(profiler) 21 job.profilers.delete(profiler)
|
control.rpm_kernel | 3 NAME = "Sample - More profilers"
|
/external/autotest/client/tests/profiler_sync/ |
profiler_sync.py | 2 # and stop profilers on a collection of hosts at approximately the same 16 hosts that will be launching profilers. (local_sync_profilers) 24 @param all_ids: A list of all hosts to synchronize profilers on. 26 profilers = self.job.profilers 40 profilers.start(self) 46 profilers.stop(self) 47 profilers.report(self)
|
/external/autotest/client/bin/ |
profilers.py | 7 class profilers(profiler_manager.profiler_manager): class in inherits:profiler_manager.profiler_manager 9 prof_dir = os.path.join(self.job.autodir, "profilers", profiler) 20 profiler, "autotest_lib.client.profilers.%s" % profiler)
|
TODO | 14 Errors from profilers are not being caught (shove a syntax error in a profiler
|
/external/autotest/utils/ |
site_test_importer.sh | 14 # Add all profilers 15 ./test_importer.py -p /usr/local/autotest/client/profilers
|
packager.py | 21 For profilers we need to exclude everything except the __init__.py 22 file so that the profilers can be imported. 27 # Get the profilers directory 28 prof_dir = os.path.join(client_dir, 'profilers') 30 # Include the __init__.py file for the profilers and exclude all its 34 exclude_string += ' --exclude=profilers/%s' % f 59 "from client/profilers directory and upload to the repo", 65 "directory alone without the tests, deps and profilers", 74 "(includes the client, tests, deps and profilers)", 96 # for the profilers and dep [all...] |
test_importer.py | 88 profilers_path = os.path.join(autotest_dir, "client/profilers") 91 profilers = get_tests_from_fs(profilers_path, '.*py$') 92 update_profilers_in_db(profilers, add_noncompliant=add_noncompliant, 126 found in the filesystem. Also removes profilers which are just 137 # Find profilers that are no longer present 139 full_path = os.path.join(autotest_dir, "client", "profilers", 160 # Find profilers that are no longer present 162 full_path = os.path.join(autotest_dir, "client", "profilers", 168 def update_profilers_in_db(profilers, description='NA', 171 Add only profilers to the database from the filesystem [all...] |
/external/autotest/server/ |
standalone_profiler.py | 4 """Runs profilers on a machine when no autotest job is running. 31 def generate_test(machines, hostname, profilers, timeout_start, timeout_stop, 34 Generate a control file that enables profilers and starts profiler_sync. 39 @param profilers: a sequence of 3 items tuples where the first item is a 42 with "job.profilers.add()" in the control file, third item is 45 profilers to start (None means no timeout) 47 profilers to stop (None means no timeout) 53 for profiler in profilers: 54 control_file.append("job.profilers.add(%s)" 62 for profiler in reversed(profilers) [all...] |
profilers.py | 8 PROFILER_TMPDIR = '/tmp/profilers' 27 class profilers(profiler_manager.profiler_manager): class in inherits:profiler_manager.profiler_manager 29 super(profilers, self).__init__(job) 51 super(profilers, self).add(profiler, *args, **dargs) 56 super(profilers, self).delete(profiler) 177 We initialize the profilers just before start because only then we 203 # wait for the profilers to be added 220 # wait for the profilers to start 235 # wait for the profilers to stop
|
/external/autotest/client/common_lib/ |
profiler_manager.py | 42 """ Returns a set of the currently enabled profilers """ 47 """ Indicates if any profilers are enabled """ 59 run without profilers at all """ 65 Override to do any setup needed before actually starting the profilers 67 profilers.start() in a profiled run). 73 """ Start all enabled profilers """ 80 """ Stop all enabled profilers """ 87 """ Returns True if profilers are present and started, False 93 """ Report on all enabled profilers """
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
android_prebuilt_profiler_helper.py | 5 """Android-specific, installs pre-built profilers.""" 13 _DEVICE_PROFILER_DIR = '/data/local/tmp/profilers/'
|
/external/autotest/client/tests/kvm/autotest_control/ |
sleeptest.control | 10 profilers and double check that autotest is working.
|
/external/autotest/client/tests/sleeptest/ |
control | 10 profilers and double check that autotest is working.
|
/external/autotest/frontend/migrations/ |
044_rename_afe_tables.py | 21 'profilers',
|
/external/autotest/client/tests/reaim/ |
reaim.py | 61 profilers = self.job.profilers 62 if not profilers.only(): 67 if profilers.present(): 68 profilers.start(self) 70 profilers.stop(self) 71 profilers.report(self)
|
/packages/apps/Camera2/src/com/android/camera/stats/profiler/ |
Profilers.java | 23 * A set of common, easy to use profilers that fill the most 26 public class Profilers { 36 private static final Profilers INSTANCE = new Profilers( 45 /** get a single shared Profilers instance */ 46 public static Profilers instance() { 57 private Profilers(LoggingProfiler errorProfiler,
|
/external/autotest/server/site_tests/native_Benchmarks/ |
control.octane | 31 job.profilers.add(profiler, p_args) 42 job.profilers.delete (profiler)
|
control.vp8 | 31 job.profilers.add(profiler, p_args) 42 job.profilers.delete (profiler)
|
/external/autotest/server/site_tests/telemetry_Crosperf/ |
control | 32 job.profilers.add(profiler, p_args) 44 job.profilers.delete (profiler)
|
/external/autotest/client/profilers/cpistat/ |
cpistat.py | 5 job.profilers.add('cpistat', interval=1)
|
/external/autotest/client/profilers/vmstat/ |
vmstat.py | 5 job.profilers.add('vmstat', interval=1)
|
/external/autotest/client/site_tests/power_Consumption/ |
control | 34 job.profilers.add('vmstat', INTERVAL_SECS) 39 job.profilers.delete('vmstat')
|