Home
last modified time | relevance | path

Searched refs:filepath (Results 1 – 5 of 5) sorted by relevance

/development/vndk/tools/image-diff-tool/
Ddiff.py30 def sha1sum_without_signing_key(filepath): argument
31 apk = zipfile.ZipFile(filepath)
39 def strip_and_sha1sum(filepath): argument
41 tmp_filepath = filepath + ".tmp.no-build-id"
44 "--remove-section=.note.gnu.build-id", filepath, "-o", tmp_filepath
51 return sha1sum(filepath)
55 return sha1sum(filepath)
/development/tools/repo_diff/service/repodiff/persistence/filesystem/
Dcsv.go46 func WriteCSVToFile(headerCols []string, rowsOfCols [][]string, filepath string) error {
47 file, err := os.Create(filepath)
/development/tools/repo_diff/service/repodiff/controllers/
Dreporter.go46 dir := filepath.Join(appConfig.OutputDirectory, "reports")
47 fname := filepath.Join(dir, filenameForTarget(target))
Ddifferential.go56 workingDirectory := filepath.Join(config.OutputDirectory, "common_upstream")
77 filepath.Join(workingDirectory, ".repo/manifest.xml"),
117 pyScript := filepath.Join(
185 filepath.Join(config.OutputDirectory, dir, ".repo/manifest.xml"),
/development/vndk/snapshot/
Dcollect_licenses.py82 def check_licenses(self, filepath): argument
85 with open(filepath, 'rt', encoding='utf-8') as file_to_check: