Home
last modified time | relevance | path

Searched refs:dest (Results 1 – 21 of 21) sorted by relevance

/build/soong/cmd/merge_zips/
Dmerge_zips.go191 func (ze zipEntry) WriteToZip(dest string, zw *zip.Writer) error {
192 return zw.CopyFrom(ze.content, dest)
217 func (be bufferEntry) WriteToZip(dest string, zw *zip.Writer) error {
238 WriteToZip(dest string, zw *zip.Writer) error
243 dest string member
255 addMapping := func(dest string, source zipSource) zipSource {
256 mapKey := filepath.Clean(dest)
262 orderedMappings = append(orderedMappings, fileMapping{source: source, dest: dest})
365 dest := file.Name
370 if existingSource := addMapping(dest, source); existingSource != nil {
[all …]
/build/soong/zip/
Dzip.go65 dest, src string member
412 var dest string
415 dest = filepath.Base(src)
418 dest, err = filepath.Rel(fa.SourcePrefixToStrip, src)
422 if strings.HasPrefix(dest, "../") {
430 dest = filepath.Join(fa.PathPrefixInZip, dest)
433 if _, found := nonDeflatedFiles[dest]; found || noCompression {
437 pathMapping{dest: dest, src: src, zipMethod: zipMethod})
444 return jar.EntryNamesLess(mappings[i].dest, mappings[j].dest)
489 if emulateJar && ele.dest == jar.ManifestFile {
[all …]
/build/soong/scripts/
Dmanifest_fixer.py50 parser.add_argument('--minSdkVersion', default='', dest='min_sdk_version',
52 parser.add_argument('--targetSdkVersion', default='', dest='target_sdk_version',
54 parser.add_argument('--raise-min-sdk-version', dest='raise_min_sdk_version', action='store_true',
56 parser.add_argument('--library', dest='library', action='store_true',
58 parser.add_argument('--uses-library', dest='uses_libraries', action='append',
60 parser.add_argument('--optional-uses-library', dest='optional_uses_libraries', action='append',
62 parser.add_argument('--uses-non-sdk-api', dest='uses_non_sdk_api', action='store_true',
64 parser.add_argument('--use-embedded-dex', dest='use_embedded_dex', action='store_true',
68 parser.add_argument('--extract-native-libs', dest='extract_native_libs',
/build/soong/android/
Dandroidmk.go232 dest := filepath.Base(distFile.String())
236 dest, err = validateSafePath(*amod.commonProperties.Dist.Dest)
244 ext := filepath.Ext(dest)
246 dest = strings.TrimSuffix(dest, ext) + suffix + ext
251 dest, err = validateSafePath(*amod.commonProperties.Dist.Dir, dest)
261 goals, distFile.String(), dest)
/build/make/tools/
Dcheckowners.py12 parser.add_argument('-v', '--verbose', dest='verbose',
15 parser.add_argument('-c', '--check_address', dest='check_address',
18 parser.add_argument(dest='owners', metavar='OWNERS', nargs='+',
Dparsedeps.py83 opts.add_option("-i", "--interactive", action="store_true", dest="interactive",
Dwarn.py108 parser.add_argument(dest='buildlog', metavar='build.log',
/build/soong/python/
Dpython.go105 dest string member
481 pathMapping{dest: runfilesPath, src: s})
493 pathMapping{dest: runfilesPath, src: d})
598 destToPySrcs[path.dest] = path.src.String()
601 destToPyData[path.dest] = path.src.String()
625 path.dest, path.src.String(), ctx.ModuleName(), ctx.OtherModuleName(child)) {
632 path.dest, path.src.String(), ctx.ModuleName(), ctx.OtherModuleName(child))
Dbinary.go148 return path.dest
Dpython_test.go398 actualPyRunfiles = append(actualPyRunfiles, path.dest)
/build/soong/cc/libbuildversion/tests/
DAndroid.bp49 dest: "win64/build_ver_test.exe",
/build/make/core/
Djacoco.mk88 --dest '$(PRIVATE_INSTRUMENTED_PATH)' \
DMakefile76 $(foreach dest,$(ALL_COPIED_HEADERS), \
77 $(eval _srcs := $(ALL_COPIED_HEADERS.$(dest).SRC)) \
80 $(warning Duplicate header copy: $(dest)) \
82 $(warning __ from $(lastword $(ALL_COPIED_HEADERS.$(dest).MAKEFILE))) \
83 …,$(call int_subtract,$(words $(ALL_COPIED_HEADERS.$(dest).MAKEFILE)),1),$$(ALL_COPIED_HEADERS.$$(d…
89 $(eval $(call copy-one-header,$(_src),$(dest))))
/build/soong/java/
Djacoco.go35 ` instrument --quiet --dest $tmpDir $strippedJar && ` +
/build/soong/cc/
Dndk_headers.go253 dest, err := os.Readlink(path.String())
260 ctx, filepath.Clean(filepath.Join(path.String(), "..", dest)))
/build/make/tools/zipalign/
DZipFile.h230 status_t filemove(FILE* fp, off_t dest, off_t src, size_t n);
/build/blueprint/pathtools/
Dfs.go440 if dest, isSymlink := m.symlinks[name]; isSymlink {
441 return dest, nil
/build/blueprint/
Dcontext.go2226 var dest []*moduleInfo
2229 dest = modules[:newLen]
2231 dest = make([]*moduleInfo, newLen)
2232 copy(dest, modules[:i])
2236 copy(dest[i+spliceSize:], modules[i+1:])
2239 copy(dest[i:], newModules)
2241 return dest, i + spliceSize - 1
/build/make/tools/releasetools/
Dsign_target_files_apks.py568 dest = "ROOT/verity_key" if system_root_image else "BOOT/RAMDISK/verity_key"
572 output_tf_zip, dest, OPTIONS.replace_verity_public_key[1])
Dsign_target_files_apks568 dest = "ROOT/verity_key" if system_root_image else "BOOT/RAMDISK/verity_key"
572 output_tf_zip, dest, OPTIONS.replace_verity_public_key[1])
/build/soong/apex/
Dapex.go882 dest := filepath.Join(a.filesInfo[i].installDir, src.Base())
883 dest_path := filepath.Join(android.PathForModuleOut(ctx, "image"+suffix).String(), dest)
888 copyCommands = append(copyCommands, "ln -s "+filepath.Base(dest)+" "+symlinkDest)