Searched refs:src_file_path (Results 1 – 4 of 4) sorted by relevance
/test/vts/utils/python/gcs/ |
D | gcs_api_utils.py | 169 def DownloadFile(self, src_file_path, dest_file_path): argument 185 blob = bucket.blob(src_file_path) 187 logging.info('File %s downloaded to %s.', src_file_path, 231 for src_file_path in filelist: 236 os.path.basename(src_file_path))) 238 self.DownloadFile(src_file_path, dest_file_path) 241 src_file_path) 247 def UploadFile(self, src_file_path, dest_file_path): argument 261 blob.upload_from_filename(src_file_path) 262 logging.info('File %s uploaded to %s.', src_file_path, dest_file_path) [all …]
|
D | gcs_api_utils_test.py | 41 def simple_DownloadFile(src_file_path, dest_file_path): argument 45 def simple_UploadFile(src_file_path, dest_file_path): argument
|
/test/vts/utils/python/coverage/ |
D | coverage_utils.py | 181 src_file_path = gcno_summary.functions[key].src_file_name 182 src_file_name = src_file_path.rsplit(".", 1)[0] 452 for src_file_path in coverage_dict: 458 if src_file_path.startswith(str(project_name)): 463 src_file_path, git_project_name) 469 if len(parts) > 1 and src_file_path.startswith(parts[-1]): 474 src_file_path, git_project_name) 478 logging.info("Could not find git info for %s", src_file_path) 481 coverage_vec = coverage_dict[src_file_path] 485 self.web.AddCoverageReport(coverage_vec, src_file_path, [all …]
|
/test/vts/utils/python/web/ |
D | web_utils.py | 189 src_file_path, argument 227 src_file_path = os.path.relpath(src_file_path, git_project_path) 228 coverage.file_path = src_file_path
|