HomeSort by relevance Sort by last modified time
    Searched refs:governors (Results 1 - 13 of 13) sorted by null

  /external/linux-kselftest/tools/testing/selftests/cpufreq/
governor.sh 4 # Test governors
82 # SWITCH GOVERNORS
135 local governors=$(cat $filepath)
136 printf "Available governors for $2: $governors\n"
138 for governor in $governors; do
  /external/lisa/tests/benchmarks/
android_geekbench.py 89 governors = self.target.cpufreq.get_all_governors()
90 self._log.info('Using governors: %s', governors)
92 # Run the benchmark in each of the supported governors
94 governors = [ variable
108 tests_remaining = len(governors) * len(tests)
110 for governor in governors:
android_gmaps.py 92 governors = self.target.cpufreq.get_all_governors()
93 self._log.info('Using governors: %s', governors)
95 # Run the benchmark in each of the supported governors
99 governors = [ variable
113 tests_remaining = len(governors) * len(locations)
115 for governor in governors:
android_jankbench.py 92 governors = self.target.cpufreq.get_all_governors()
93 self._log.info('Using governors: %s', governors)
96 # Run the benchmark in each of the supported governors
100 governors = [ variable
118 tests_remaining = len(governors) * len(tests)
120 for governor in governors:
android_uibench.py 91 governors = self.target.cpufreq.get_all_governors()
92 self._log.info('Using governors: %s', governors)
94 # Run the benchmark in each of the supported governors
98 governors = [ variable
129 tests_remaining = len(governors) * len(tests)
131 for governor in governors:
android_vellamo.py 89 governors = self.target.cpufreq.get_all_governors()
90 self._log.info('Using governors: %s', governors)
93 # Run the benchmark in each of the supported governors
95 governors = [ variable
111 tests_remaining = len(governors) * len(tests)
113 for governor in governors:
android_youtube.py 92 governors = self.target.cpufreq.get_all_governors()
93 self._log.info('Using governors: %s', governors)
95 # Run the benchmark in each of the supported governors
99 governors = [ variable
112 tests_remaining = len(governors) * len(video_urls)
114 for governor in governors:
  /external/chromium-trace/catapult/devil/devil/android/tools/
cpufreq.py 37 for cpu, governors in p.ListAvailableGovernors():
38 print '%s %s: %s' % (str(device), cpu, pprint.pformat(governors))
60 list_governors = subparsers.add_parser('list-governors')
  /hardware/interfaces/power/1.0/vts/functional/
VtsHalPowerV1_0TargetTest.cpp 100 char governors[1024]; local
101 unsigned len = read(fd2, governors, 1024);
103 governors[len] = '\0';
106 char *name = strtok_r(governors, " \n", &saveptr);
  /external/autotest/client/site_tests/power_CPUFreq/
power_CPUFreq.py 162 governors = self.__read_file('scaling_available_governors')
163 logging.info('available governors: %s' % governors)
164 return governors.split()
  /external/lisa/tests/eas/
preliminary.py 73 governors = self.target.cpufreq.list_governors(cpu)
74 if 'sched' not in governors and 'schedutil' not in governors:
197 governors = self.target.cpufreq.list_governors(0)
198 if 'schedutil' not in governors:
  /external/devlib/devlib/module/
cpufreq.py 55 """Returns a list of governors supported by the cpu."""
72 See https://www.kernel.org/doc/Documentation/cpu-freq/governors.txt
80 governors that support them.
338 See https://www.kernel.org/doc/Documentation/cpu-freq/governors.txt
348 See https://www.kernel.org/doc/Documentation/cpu-freq/governors.txt
402 governors = {}
407 governors[kv[0]] = kv[1]
408 return governors
  /external/lisa/experiments/power/eas/
run_cpu_frequency.py 234 # Store governors so they can be restored later
235 governors = [ target.cpufreq.get_governor(cpu) for cpu in cpus]
253 # Restore all governors
254 for i, governor in enumerate(governors):

Completed in 3653 milliseconds