/test/vti/dashboard/src/test/java/com/android/vts/job/ |
D | VtsPerformanceJobServletTest.java | 122 VtsProfilingRegressionMode mode = VtsProfilingRegressionMode.VTS_REGRESSION_MODE_INCREASING; in setUp() local 123 ProfilingPointSummary summary = new ProfilingPointSummary("", "", mode); in setUp() 124 ProfilingPointSummaryEntity pt = createProfilingReport(LABELS, HIGH_VALS, mode); in setUp() 134 mode = VtsProfilingRegressionMode.VTS_REGRESSION_MODE_DECREASING; in setUp() 135 summary = new ProfilingPointSummary("", "", mode); in setUp() 136 pt = createProfilingReport(LABELS, LOW_VALS, mode); in setUp() 150 mode = VtsProfilingRegressionMode.VTS_REGRESSION_MODE_INCREASING; in setUp() 151 summary = new ProfilingPointSummary("", "", mode); in setUp() 152 pt = createProfilingReport(LABELS, LOW_VALS, mode); in setUp() 162 mode = VtsProfilingRegressionMode.VTS_REGRESSION_MODE_DECREASING; in setUp() [all …]
|
/test/vts/utils/python/hal/ |
D | hal_service_name_utils_unittest.py | 63 mode = hal_service_name_utils.CombMode.NAME_MATCH 65 mode) 68 ["s1"], {}, mode) 71 ["s1"], {"s1": ["n1"]}, mode) 74 ["s1"], {"s1": ["n1", "n2"]}, mode) 77 ["s1", "s2"], {"s1": ["n1", "n2"]}, mode) 81 "s2": ["n3"]}, mode) 85 "s2": ["n3", "n4"]}, mode) 89 "s2": []}, mode) 93 "s2": ["n1", "n2"]}, mode) [all …]
|
D | hal_service_name_utils.py | 74 mode=CombMode.FULL_PERMUTATION): argument 87 if mode == CombMode.FULL_PERMUTATION: 89 elif mode == CombMode.NAME_MATCH:
|
/test/vts/compilation_tools/vtsc/test/ |
D | test_vtsc.py | 146 def RunFuzzerTest(self, mode, vts_file_path, source_file_name): argument 148 self._vtsc_path, "-m" + mode, vts_file_path, 149 os.path.join(self._output_dir, mode), 150 os.path.join(self._output_dir, mode, "") 154 canonical_source_file = os.path.join(self._canonical_dir, mode, 156 output_source_file = os.path.join(self._output_dir, mode, 184 mode, argument 200 self._vtsc_path, "-m" + mode, vts_file_path, 201 os.path.join(self._output_dir, mode), 202 os.path.join(self._output_dir, mode, output_file_name) [all …]
|
/test/vts/compilation_tools/vtsc/code_gen/ |
D | CodeGenBase.cpp | 55 void Translate(VtsCompileMode mode, in Translate() argument 63 TranslateToFile(mode, input_vts_file_path, output_header_file_path.c_str(), in Translate() 66 TranslateToFile(mode, input_vts_file_path, output_cpp_file_path, in Translate() 70 void TranslateToFile(VtsCompileMode mode, in TranslateToFile() argument 95 if (mode == kDriver) { in TranslateToFile() 117 } else if (mode == kFuzzer) { in TranslateToFile() 138 } else if (mode == kProfiler) { in TranslateToFile()
|
D | CodeGenBase.h | 72 void Translate(VtsCompileMode mode, 79 void TranslateToFile(VtsCompileMode mode,
|
/test/vti/dashboard/src/test/java/com/android/vts/util/ |
D | ProfilingPointSummaryTest.java | 78 VtsProfilingRegressionMode mode = VtsProfilingRegressionMode.VTS_REGRESSION_MODE_INCREASING; in setUp() local 79 summary = new ProfilingPointSummary("x", "y", mode); in setUp() 80 ProfilingPointSummaryEntity pt = createProfilingReport(labels, values, mode); in setUp() 123 VtsProfilingRegressionMode mode = VtsProfilingRegressionMode.VTS_REGRESSION_MODE_INCREASING; in testIterator() local 124 ProfilingPointSummaryEntity pt = createProfilingReport(labels, values, mode); in testIterator() 136 VtsProfilingRegressionMode mode = VtsProfilingRegressionMode.VTS_REGRESSION_MODE_INCREASING; in testUpdateLabelGrouped() local 137 summary = new ProfilingPointSummary("x", "y", mode); in testUpdateLabelGrouped() 138 ProfilingPointSummaryEntity pt = createProfilingReport(labels, values, mode); in testUpdateLabelGrouped()
|
/test/framework/harnesses/host_controller/utils/ipc/ |
D | file_lock.py | 35 def __init__(self, file_name=None, mode=None): argument 57 self._OpenFile(file_name, mode) 59 def _OpenFile(self, serial, mode=None): argument 72 if not mode: 73 mode = "w+" 75 os.path.join(self._devlock_dir, serial), mode, 0)
|
/test/vts/compilation_tools/vtsc/ |
D | VtsCompilerMain.cpp | 50 android::vts::VtsCompileMode mode = android::vts::kDriver; in main() local 61 mode = android::vts::kProfiler; in main() 66 mode = android::vts::kFuzzer; in main() 100 mode, argv[opt_count + 1], argv[opt_count + 2], argv[opt_count + 3]); in main() 119 mode, argv[opt_count + 1], argv[opt_count + 2], type); in main() 145 mode, src_file.c_str(), dst_file.c_str(), type); in main()
|
D | VtsCompilerUtils.h | 55 extern int vts_fs_mkdirs(char* file_path, mode_t mode);
|
/test/vti/dashboard/src/main/java/com/android/vts/util/ |
D | StatSummary.java | 51 VtsProfilingRegressionMode mode) { in StatSummary() argument 58 this.regression_mode = mode; in StatSummary() 70 public StatSummary(String label, VtsProfilingRegressionMode mode) { in StatSummary() argument 71 this(label, Double.MAX_VALUE, Double.MIN_VALUE, 0, 0, 0, mode); in StatSummary()
|
D | PerformanceUtil.java | 71 VtsProfilingRegressionMode mode) { in getPercentChangeHTML() argument 84 if (mode == VtsProfilingRegressionMode.VTS_REGRESSION_MODE_DECREASING) { in getPercentChangeHTML()
|
/test/vts/utils/native/trace_processor/ |
D | TraceProcessorMain.cpp | 102 string mode = kDefaultMode; in main() local 129 mode = string(optarg); in main() 148 switch (getModeCode(mode)) { in main() 178 switch (getModeCode(mode)) { in main()
|
/test/vts/runners/target/vts_hal_hidl_target/ |
D | VtsHalHidlTargetTestEnvBase.h | 97 void setServiceCombMode(HalServiceCombMode mode) { mode_ = mode; } in setServiceCombMode() argument
|
/test/vts-testcase/kernel/api/tun/ |
D | vts_kernel_tun_test.cpp | 57 int VtsKernelTunTest::TunInit(short mode) { in TunInit() argument 59 .ifr_flags = mode, in TunInit()
|
/test/vts-testcase/vndk/golden/ |
D | extract_lsdump.py | 239 with lsdump_zip.open(name, mode="r") as lsdump_file: 285 with zipfile.ZipFile(args.input_path, mode='r') as input_zip: 288 with zipfile.ZipFile(args.output_path, mode='w',
|
/test/vts/drivers/resource/resource_manager/ |
D | VtsResourceManager.cpp | 69 int mode = 0; in ProcessHidlHandleCommand() local 77 mode = S_IRWXU; // User has the right to read/write/execute. in ProcessHidlHandleCommand() 81 mode = S_IRWXU; in ProcessHidlHandleCommand() 90 mode = S_IRWXU; in ProcessHidlHandleCommand() 95 mode = S_IRWXU; in ProcessHidlHandleCommand() 105 mode = S_IRWXU; in ProcessHidlHandleCommand() 122 hidl_handle_driver_.CreateFileHandle(filepath, flag, mode, int_data); in ProcessHidlHandleCommand()
|
/test/vts-testcase/hal/gnss/V1_0/host/ |
D | VtsHalGnssV1_0HostTest.py | 37 mode = "true" if self.passthrough_mode else "false" 39 "setprop %s %s" % (self.SYSPROP_GETSTUB, mode))
|
/test/vts/drivers/resource/hidl_handle_driver/ |
D | VtsHidlHandleDriver.cpp | 44 int mode, vector<int> data) { in CreateFileHandle() argument 55 int curr_fd = open(filepath.c_str(), flag, mode); in CreateFileHandle()
|
/test/vts/drivers/hal/libcodecoverage/ |
D | GcdaFile.cpp | 38 gcov_var_.mode = 0; in Open() 52 gcov_var_.mode = 0; in Close()
|
/test/vti/dashboard/ |
D | gradle.properties | 4 mode= key
|
/test/framework/harnesses/host_controller/command_processor/ |
D | command_test.py | 198 result_paths[0], mode="r") as result_zip: 200 "log-result.xml", mode="rU") as result_xml:
|
/test/vts/tools/build/tasks/list/ |
D | update-lists.sh | 20 …$ANDROID_BUILD_TOP/build/soong/soong_ui.bash --make-mode -j "out/target/product/$target_device/mod…
|
/test/vts/drivers/resource/include/hidl_handle_driver/ |
D | VtsHidlHandleDriver.h | 72 HandleId CreateFileHandle(string filepath, int flag, int mode,
|
/test/mlts/benchmark/tools/ |
D | build_and_dump_intermediate.sh | 50 build/soong/soong_ui.bash --make-mode NeuralNetworksApiBenchmark
|