/platform_testing/libraries/device-collectors/src/main/platform-collectors/ |
D | Android.bp | 15 // Genrule for handwritten statsd configs. 24 "res/statsd-configs/**/*.pb", 28 * Loops over all subdirectories under res/statsd-configs/ and copy all *.pb configs within to 29 * an assets/statsd-configs/ directory, which gets packed into a .jar file and ends up under the 30 * assets/statsd-configs/ directory in the package, which can then be read with asset manager 35 cmd: "out_dir=$$(dirname $(out)) && assets_dir=\"assets/statsd-configs\" " + 36 "&& mkdir -p $$out_dir/$$assets_dir && protos=($(locations res/statsd-configs/**/*.pb)) " +
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/remaining-battery-capacity/ |
D | README.md | 3 These configs are used to collect the remaining battery capacity on the device as defined in the 4 RemainingBatteryCapacity (Colomb counter) atom. Also includes configs with uid to package name mapp…
|
/platform_testing/scripts/perfetto-setup/ |
D | Android.mk | 24 LOCAL_PREBUILT_MODULE_FILE := prebuilts/tools/linux-x86_64/perfetto/configs/trace_config_detailed.t… 34 LOCAL_PREBUILT_MODULE_FILE := prebuilts/tools/linux-x86_64/perfetto/configs/long_trace_config.textp… 44 LOCAL_PREBUILT_MODULE_FILE := prebuilts/tools/linux-x86_64/perfetto/configs/trace_config.textproto 54 LOCAL_PREBUILT_MODULE_FILE := prebuilts/tools/linux-x86_64/perfetto/configs/trace_config_experiment…
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/full-battery-capacity/ |
D | README.md | 3 These statsd configs collects FullBatteryCapacity metrics.
|
/platform_testing/tests/microbenchmarks/uibench/ |
D | Android.bp | 38 test_config: "configs/uibench-all.xml", 41 extra_test_configs: ["configs/uibench-dialoglist.xml", 42 "configs/uibench-invalidate.xml",],
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/wifi-bytes-transfer/ |
D | README.md | 3 The configs here collects the WiFi bytes transferred on the start and end of tests or test run,
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/process-cpu-time/ |
D | README.md | 3 These configs are used to collect the cpu stats at the start and end of tests or test run.
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/on-device-power-measurement/ |
D | README.md | 3 These configs are used to pull the on-device power measurement before and after a test and test run…
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/cpu-time-per-freq/ |
D | README.md | 3 These configs are used to pull the cpu time per frequency at the start and end of tests or test run…
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/wifi-controller-energy/ |
D | README.md | 3 These configs are used to gauge the amount of energy consumed by the WiFi controller throughout a
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/cpu-cluster-time/ |
D | README.md | 3 These configs are used to pull the process user time and system time at the start and end of tests …
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/subsystem-sleep-state/ |
D | README.md | 3 These configs are used to collect the subsystem sleep state on the device as defined in the Subsyst…
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/cpu-time-per-uid-freq/ |
D | README.md | 3 These configs are used to pull the cpu time per frequency at the start and end of tests or test run…
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/cpu-time-per-thread-freq/ |
D | README.md | 3 These configs are used to pull CPU usage for each thread per frequency at the start and end of test…
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/mobile-bytes-transfer/ |
D | README.md | 3 These configs are used to collect the bytes transferred via mobile networks(sum of foreground and b…
|
/platform_testing/libraries/automotive-helpers/utility-helper/src/android/platform/helpers/ |
D | AutoJsonUtility.java | 441 private void throwJsonArrayException(String... configs) { in throwJsonArrayException() argument 446 Arrays.toString(configs)); in throwJsonArrayException() 451 private void throwJsonStringException(String... configs) { in throwJsonStringException() argument 455 Arrays.toString(configs)); in throwJsonStringException() 460 private void throwJsonObjectException(String... configs) { in throwJsonObjectException() argument 465 Arrays.toString(configs)); in throwJsonObjectException() 470 private void throwUnknownObjectException(String... configs) { in throwUnknownObjectException() argument 473 "Config file is invalid. Unknown config %s.", Arrays.toString(configs)); in throwUnknownObjectException()
|
/platform_testing/libraries/device-collectors/src/test/platform/android/device/collectors/ |
D | StatsdListenerTest.java | 490 Map<String, StatsdConfigProto.StatsdConfig> configs = in testParsingConfigFromArguments_validConfig() local 492 Assert.assertTrue(configs.containsKey(CONFIG_NAME_1)); in testParsingConfigFromArguments_validConfig() 493 Assert.assertEquals(configs.get(CONFIG_NAME_1).id, CONFIG_ID_1); in testParsingConfigFromArguments_validConfig() 494 Assert.assertTrue(configs.containsKey(CONFIG_NAME_2)); in testParsingConfigFromArguments_validConfig() 495 Assert.assertEquals(configs.get(CONFIG_NAME_2).id, CONFIG_ID_2); in testParsingConfigFromArguments_validConfig() 496 Assert.assertEquals(configs.size(), 2); in testParsingConfigFromArguments_validConfig() 513 Map<String, StatsdConfigProto.StatsdConfig> configs = in testParsingConfigFromArguments_malformedConfig() local 525 Map<String, StatsdConfigProto.StatsdConfig> configs = in testParsingConfigFromArguments_nonexistentConfig() local 591 Map<String, StatsdConfigProto.StatsdConfig> configs = in testConfigsHavePermissionFixes() local 593 Assert.assertTrue(configs.containsKey(CONFIG_NAME_1)); in testConfigsHavePermissionFixes() [all …]
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/src/android/device/collectors/ |
D | StatsdListener.java | 181 final Map<String, StatsdConfigProto.StatsdConfig> configs) { in registerConfigsWithStatsManager() argument 184 for (String configName : configs.keySet()) { in registerConfigsWithStatsManager() 186 long configId = getUniqueIdForConfig(configs.get(configName)); in registerConfigsWithStatsManager() 187 StatsdConfigProto.StatsdConfig newConfig = clone(configs.get(configName)); in registerConfigsWithStatsManager()
|
/platform_testing/libraries/device-collectors/src/main/platform-collectors/res/statsd-configs/ |
D | README.md | 16 suffixes if there are multiple configs related to the overarching metrics, with `.pb` extension.
|