Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 8 of 8) sorted by relevance

/build/libs/host/
DCopyFile.c51 static int copyFileRecursive(const char* src, const char* dst, bool isCmdLine, unsigned int options…
99 static void printCopyMsg(const char* src, const char* dst, unsigned int options) in printCopyMsg() argument
102 printf(" '%s' --> '%s'\n", src, dst); in printCopyMsg()
105 static void printNotNewerMsg(const char* src, const char* dst, unsigned int options) in printNotNewerMsg() argument
108 printf(" '%s' is up-to-date\n", dst); in printNotNewerMsg()
116 static int copyFileContents(const char* dst, int dstFd, const char* src, int srcFd) in copyFileContents() argument
136 "acp: failed writing '%s': %s\n", dst, strerror(errno)); in copyFileContents()
141 dst, writeCount, readCount); in copyFileContents()
160 static int setPermissions(const char* dst, const struct stat* pSrcStat, unsigned int options) in setPermissions() argument
173 if (utime(dst, &ut) != 0) { in setPermissions()
[all …]
/build/core/
Ddistdir.mk57 $(eval dst := $(word 2,$(fw))) \
58 $(eval dst := $(if $(dst),$(dst),$(notdir $(src)))) \
62 $(DIST_DIR)/$(dst), \
/build/tools/acp/
Dacp.c117 char* dst; in process() local
142 dst = malloc(stripDestLen +1 + srcNameLen +1); in process()
143 memcpy(dst, stripDest, stripDestLen); in process()
144 dst[stripDestLen] = FSSEP; in process()
145 memcpy(dst + stripDestLen+1, srcName, srcNameLen+1); in process()
148 dst = stripDest; in process()
154 copyResult = copyFile(src, dst, options); in process()
160 if (dst != stripDest) in process()
161 free(dst); in process()
/build/libs/host/include/host/
DCopyFile.h23 int copyFile(const char* src, const char* dst, unsigned int options);
/build/tools/atree/
Dfs.h10 int copy_file(const string& src, const string& dst);
Dfs.cpp143 copy_file(const string& src, const string& dst) in copy_file() argument
147 err = copyFile(src.c_str(), dst.c_str(), in copy_file()
/build/tools/zipalign/
DZipFile.cpp428 long dst = ftell(mZipFp) - startPosn; in addCommon() local
429 if (dst + (dst / 10) > src) { in addCommon()
431 src, dst); in addCommon()
1049 status_t ZipFile::filemove(FILE* fp, off_t dst, off_t src, size_t n) in filemove() argument
1051 if (dst == src || n <= 0) in filemove()
1056 if (dst < src) { in filemove()
1074 if (fseek(fp, (long) dst, SEEK_SET) != 0) { in filemove()
1075 LOGD("filemove dst seek %ld failed\n", (long) dst); in filemove()
1081 (long) getSize, (long) dst); in filemove()
1086 dst += getSize; in filemove()
/build/tools/releasetools/
Dedify_generator.py144 def UnpackPackageDir(self, src, dst): argument
147 self.script.append('package_extract_dir("%s", "%s");' % (src, dst))