Searched refs:tunables (Results 1 - 10 of 10) sorted by relevance

/external/lisa/tests/benchmarks/
H A Dandroid_geekbench.py52 # Different schedutil versions have different tunables
53 tunables = self.target.cpufreq.list_governor_tunables(0)
54 if 'rate_limit_us' in tunables:
55 tunables = {'rate_limit_us' : str(rate_limit_us)}
57 assert ('up_rate_limit_us' in tunables and
58 'down_rate_limit_us' in tunables)
59 tunables = {
67 cpu_id, 'schedutil', **tunables)
78 tunables = self.target.cpufreq.get_governor_tunables(cpu_id)
81 **{'sampling_rate' : tunables['sampling_rate_mi
[all...]
H A Dandroid_gmaps.py55 # Different schedutil versions have different tunables
56 tunables = self.target.cpufreq.list_governor_tunables(0)
57 if 'rate_limit_us' in tunables:
58 tunables = {'rate_limit_us' : str(rate_limit_us)}
60 assert ('up_rate_limit_us' in tunables and
61 'down_rate_limit_us' in tunables)
62 tunables = {
70 cpu_id, 'schedutil', **tunables)
81 tunables = self.target.cpufreq.get_governor_tunables(cpu_id)
84 **{'sampling_rate' : tunables['sampling_rate_mi
[all...]
H A Dandroid_jankbench.py55 # Different schedutil versions have different tunables
56 tunables = self.target.cpufreq.list_governor_tunables(0)
57 if 'rate_limit_us' in tunables:
58 tunables = {'rate_limit_us' : str(rate_limit_us)}
60 assert ('up_rate_limit_us' in tunables and
61 'down_rate_limit_us' in tunables)
62 tunables = {
70 cpu_id, 'schedutil', **tunables)
81 tunables = self.target.cpufreq.get_governor_tunables(cpu_id)
84 **{'sampling_rate' : tunables['sampling_rate_mi
[all...]
H A Dandroid_uibench.py54 # Different schedutil versions have different tunables
55 tunables = self.target.cpufreq.list_governor_tunables(0)
56 if 'rate_limit_us' in tunables:
57 tunables = {'rate_limit_us' : str(rate_limit_us)}
59 assert ('up_rate_limit_us' in tunables and
60 'down_rate_limit_us' in tunables)
61 tunables = {
69 cpu_id, 'schedutil', **tunables)
80 tunables = self.target.cpufreq.get_governor_tunables(cpu_id)
83 **{'sampling_rate' : tunables['sampling_rate_mi
[all...]
H A Dandroid_vellamo.py52 # Different schedutil versions have different tunables
53 tunables = self.target.cpufreq.list_governor_tunables(0)
54 if 'rate_limit_us' in tunables:
55 tunables = {'rate_limit_us' : str(rate_limit_us)}
57 assert ('up_rate_limit_us' in tunables and
58 'down_rate_limit_us' in tunables)
59 tunables = {
67 cpu_id, 'schedutil', **tunables)
78 tunables = self.target.cpufreq.get_governor_tunables(cpu_id)
81 **{'sampling_rate' : tunables['sampling_rate_mi
[all...]
H A Dandroid_youtube.py55 # Different schedutil versions have different tunables
56 tunables = self.target.cpufreq.list_governor_tunables(0)
57 if 'rate_limit_us' in tunables:
58 tunables = {'rate_limit_us' : str(rate_limit_us)}
60 assert ('up_rate_limit_us' in tunables and
61 'down_rate_limit_us' in tunables)
62 tunables = {
70 cpu_id, 'schedutil', **tunables)
81 tunables = self.target.cpufreq.get_governor_tunables(cpu_id)
84 **{'sampling_rate' : tunables['sampling_rate_mi
[all...]
/external/devlib/devlib/module/
H A Dcpufreq.py20 # a dict of governor name and a list of it tunables that can't be read
78 Additional keyword arguments can be used to specify governor tunables for
99 """Returns a list of tunables available for the governor on the specified CPU."""
111 except TargetError: # governor does not support tunables
119 tunables = {}
124 tunables[tunable] = self.target.read_value(path)
127 tunables[tunable] = self.target.read_value(path)
128 return tunables
132 Set tunables for the specified governor. Tunables should be specified as
133 keyword arguments. Which tunables an
[all...]
/external/lisa/tests/eas/
H A Dpreliminary.py209 tunables = self.target.cpufreq.get_governor_tunables(cpu)
210 for name, value in tunables.iteritems():
/external/lisa/libs/wlgen/wlgen/
H A Drta.py106 tunables = target.cpufreq.get_governor_tunables(cpu)
107 old_governors[cpu] = governor, tunables
144 # Setting a governor & tunables for a cpu will set them for all cpus
147 for cpu, (governor, tunables) in old_governors.iteritems():
149 target.cpufreq.set_governor_tunables(cpu, **tunables)
/external/selinux/libsepol/src/
H A Dexpand.c1086 /* Skip tunables */
2868 * If tunables are requested to be preserved then they would be
2882 int booleans, tunables, i; local
2886 booleans = tunables = 0;
2895 tmp[tunables++] = booldatum;
2901 * that no mixture of tunables and booleans in one
2903 * request to preserve tunables */
2905 assert(!(booleans && tunables));
2909 if (tunables) {
2910 for (i = 0; i < tunables;
[all...]

Completed in 382 milliseconds