/test/vts/utils/python/gcs/ |
D | gcs_api_utils_test.py | 32 def simple_ListFilesWithPrefix(dir_path): argument 34 '%s/file1' % dir_path, 35 '%s/file2' % dir_path, 36 '%s/file3' % dir_path, 37 '%s/file4' % dir_path 49 def simple_PrefixExists(dir_path): argument 50 if dir_path is 'valid_source_dir':
|
D | gcs_api_utils.py | 69 def ListFilesWithPrefix(self, dir_path, strict=True): argument 112 if strict and not dir_path.endswith('/'): 113 dir_path += '/' 116 dir_list = list(bucket.list_blobs(prefix=dir_path)) 119 def CountFiles(self, dir_path): argument 133 return len(self.ListFilesWithPrefix(dir_path)) 135 def PrefixExists(self, dir_path): argument 151 return self.CountFiles(dir_path) is not 0
|
/test/vts/agents/hal/ |
D | VtsAgentMain.cpp | 126 char* dir_path; in main() local 127 dir_path = (char*)malloc(strlen(argv[0]) + 1); in main() 128 strcpy(dir_path, argv[0]); in main() 130 if (dir_path[index] == '/') { in main() 131 dir_path[index] = '\0'; in main() 135 chdir(dir_path); in main()
|
/test/vts-testcase/hal/script/build/ |
D | build_rule_gen_utils.py | 44 dir_path = os.path.dirname(file_path) 45 if not os.path.exists(dir_path): 46 os.makedirs(dir_path) 81 def RemoveFilesInDirIf(dir_path, condition): argument 93 for base, _, files in os.walk(dir_path):
|
/test/vts/utils/python/fuzzer/ |
D | corpus_manager.py | 620 dir_path = '' 624 dir_path = os.path.join(self._gcs_path, test_name, 628 dir_path = os.path.join(self._gcs_path, test_name, 632 dir_path = os.path.join(self._gcs_path, test_name, 636 dir_path = os.path.join(self._gcs_path, test_name, 640 dir_path = os.path.join(self._gcs_path, test_name, 'incoming', 644 dir_path = os.path.join(self._gcs_path, test_name, 'incoming', 649 dir_path = os.path.join(local_temp_dir, 653 dir_path = os.path.join(local_temp_dir, 656 return dir_path
|
/test/vts/utils/python/coverage/ |
D | coverage_report_test.py | 35 dir_path = os.path.dirname(os.path.realpath(__file__)) 36 gcno_path = os.path.join(dir_path, cls.GOLDEN_GCNO_PATH) 39 gcda_path = os.path.join(dir_path, cls.GOLDEN_GCDA_PATH)
|
D | gcda_parser_test.py | 125 dir_path = os.path.dirname(os.path.realpath(__file__)) 126 gcno_path = os.path.join(dir_path, self.GOLDEN_GCNO_PATH) 127 gcda_path = os.path.join(dir_path, self.GOLDEN_GCDA_PATH)
|
D | gcno_parser_test.py | 191 dir_path = os.path.dirname(os.path.realpath(__file__)) 192 file_path = os.path.join(dir_path, self.GOLDEN_GCNO_PATH)
|
/test/vts-testcase/vndk/files/ |
D | VtsVndkFilesTest.py | 56 def _ListFiles(self, dir_path): argument 65 if not target_file_utils.Exists(dir_path, self._shell): 66 logging.info("%s not found", dir_path) 68 return target_file_utils.FindFiles(self._shell, dir_path, "*",
|
D | vts_vndk_files_test.py | 53 def _ListFiles(self, dir_path): argument 62 if not self._dut.Exists(dir_path): 63 logging.info("%s not found", dir_path) 65 return self._dut.FindFiles(dir_path, "*", "!", "-type", "d")
|
/test/vts-testcase/fuzz/iface_fuzzer/ |
D | ProtoFuzzerUtils.cpp | 86 for (const auto &dir_path : dirs) { in ExtractCompSpecs() local 89 if (!(dir = opendir(dir_path.c_str()))) { in ExtractCompSpecs() 90 cerr << "Could not open directory: " << dir_path << endl; in ExtractCompSpecs() 96 string vts_spec_path = dir_path + "/" + vts_spec_name; in ExtractCompSpecs()
|
/test/vts/utils/python/library/vtable/ |
D | vtable_dumper_test.py | 54 dir_path = os.path.dirname(os.path.realpath(__file__)) 55 self.elf_file_path = os.path.join(dir_path, 'testing', 'libtest.so')
|
/test/framework/harnesses/host_controller/build/ |
D | build_provider.py | 252 dir_path, argument 264 for dir_name, file_name in utils.iterate_files(dir_path): 267 if root_path else dir_path),
|
/test/vts/utils/python/library/ |
D | elf_parser_test.py | 59 dir_path = os.path.dirname(os.path.realpath(__file__)) 60 self.elf_file_path = os.path.join(dir_path, 'elf', 'testing',
|
/test/vts/utils/python/reporting/ |
D | report_file_utils.py | 108 dir_path = os.path.dirname(src_path) 117 os.path.relpath(dir_path, root_dir), relative_path)
|
/test/vts/compilation_tools/vtsc/ |
D | VtsCompilerUtils.cpp | 538 string PathJoin(const char* dir_path, const char* file_name) { in PathJoin() argument 540 if (dir_path) { in PathJoin() 541 result = dir_path; in PathJoin()
|
D | VtsCompilerUtils.h | 62 string PathJoin(const char* dir_path, const char* file_name);
|
/test/mlts/benchmark/tools/ |
D | tensor_utils.py | 203 dir_path = model_dir + useNNAPIDir + "/" 204 self[useNNAPIDir] = self.read_tensors_from_dir(dir_path) 224 def read_tensors_from_dir(self, dir_path): argument 226 for tensor_file in os.listdir(dir_path): 227 tensor = self.bytes_to_numpy_tensor(dir_path + tensor_file)
|
/test/vts/drivers/hal/common/component_loader/ |
D | HalDriverLoader.cpp | 35 HalDriverLoader::HalDriverLoader(const string dir_path, int epoch_count, in HalDriverLoader() argument 37 : dir_path_(dir_path), in HalDriverLoader()
|
/test/vts/drivers/hal/common/include/component_loader/ |
D | HalDriverLoader.h | 36 HalDriverLoader(const string dir_path, int epoch_count,
|
/test/vts/runners/host/ |
D | utils.py | 202 def iterate_files(dir_path): argument 212 for root_dir, dir_names, file_names in os.walk(dir_path):
|
/test/vts-testcase/vndk/dependency/ |
D | vts_vndk_dependency_test.py | 360 for dir_path, libs in vendor_namespace.items(): 361 logging.info("%s: %s", dir_path, ",".join(libs.keys()))
|
D | VtsVndkDependencyTest.py | 355 for dir_path, libs in vendor_namespace.iteritems(): 356 logging.info("%s: %s", dir_path, ",".join(libs.iterkeys()))
|
/test/vts/proto/ |
D | VtsReportMessage.proto | 209 optional bytes dir_path = 1 [deprecated=true]; field
|