Searched refs:filepath (Results 1 – 5 of 5) sorted by relevance
/development/build/tools/ |
D | mk_sources_zip.py | 138 filepath = os.path.join(srcdir, filename) 139 if filename.endswith(".java") and os.path.isfile(filepath): 140 pkg = checkJavaFile(filepath) 142 verbose("No package found in %s", filepath) 150 verbose("Ignore package %s [%s]", pkg, filepath) 156 copy(p, filepath, pkg) 160 elif os.path.isdir(filepath): 162 parseSrcDir(p, filepath) 187 def copy(p, filepath, dest_pkg): argument 188 arc_path = os.path.join(TOP_FOLDER, dest_pkg, os.path.basename(filepath)) [all …]
|
/development/vndk/tools/image-diff-tool/ |
D | diff.py | 30 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/ |
D | csv.go | 46 func WriteCSVToFile(headerCols []string, rowsOfCols [][]string, filepath string) error { 47 file, err := os.Create(filepath)
|
/development/tools/repo_diff/service/repodiff/controllers/ |
D | reporter.go | 46 dir := filepath.Join(appConfig.OutputDirectory, "reports") 47 fname := filepath.Join(dir, filenameForTarget(target))
|
D | differential.go | 56 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"),
|