/test/vts-testcase/kernel/api/rootdir/ |
D | VtsKernelRootDirTest.py | 170 def _ListDir(self, dir_path, file_type="all"): argument 193 self._shell, dir_path, "*", find_option)) - set([dir_path]) 201 def _TraverseRootDir(self, dir_path="/"): argument 204 dirs = [dir_path] 205 for d in self._ListDir(dir_path, "dir"): 214 for dir_path in self._dirs_to_check: 215 current_dirs = self._ListDir(dir_path, "dir") 228 def _CheckSymlinks(dir_path): argument 230 current_symlinks = self._ListDir(dir_path, "symlink") 245 for dir_path in self._dirs_to_check: [all …]
|
/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-testcase/fuzz/iface_fuzzer/ |
D | ProtoFuzzerUtils.cpp | 83 string dir_path; in ExtractCompSpecs() local 86 while (std::getline(iss, dir_path, ':')) { in ExtractCompSpecs() 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/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, "*",
|
/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 | 57 dir_path = os.path.dirname(os.path.realpath(__file__)) 58 self.elf_file_path = os.path.join(dir_path, 'elf', 'testing',
|
/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/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/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 | 204 def iterate_files(dir_path): argument 214 for root_dir, dir_names, file_names in os.walk(dir_path):
|
/test/vts/proto/ |
D | VtsReportMessage.proto | 209 optional bytes dir_path = 1 [deprecated=true]; field
|