Searched defs:dst (Results 1 - 4 of 4) sorted by relevance

/build/tools/acp/
H A Dacp.c117 char* dst; local
142 dst = malloc(stripDestLen +1 + srcNameLen +1);
143 memcpy(dst, stripDest, stripDestLen);
144 dst[stripDestLen] = FSSEP;
145 memcpy(dst + stripDestLen+1, srcName, srcNameLen+1);
148 dst = stripDest;
154 copyResult = copyFile(src, dst, options);
160 if (dst != stripDest)
161 free(dst);
/build/tools/atree/
H A Dfs.cpp143 copy_file(const string& src, const string& dst) argument
147 err = copyFile(src.c_str(), dst.c_str(),
/build/libs/host/
H A 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) argument
102 printf(" '%s' --> '%s'\n", src, dst);
105 static void printNotNewerMsg(const char* src, const char* dst, unsigned int options) argument
108 printf(" '%s' is up-to-date\n", dst);
116 static int copyFileContents(const char* dst, int dstFd, const char* src, int srcFd) argument
136 "acp: failed writing '%s': %s\n", dst, strerror(errno));
141 dst, writeCount, readCount);
160 static int setPermissions(const char* dst, const struct stat* pSrcStat, unsigned int options) argument
173 if (utime(dst,
209 copyRegular(const char* src, const char* dst, const struct stat* pSrcStat, unsigned int options) argument
351 copySymlink(const char* src, const char* dst, const struct stat* pSrcStat, unsigned int options) argument
431 copyDirectory(const char* src, const char* dst, const struct stat* pSrcStat, unsigned int options) argument
530 copyFileRecursive(const char* src, const char* dst, bool isCmdLine, unsigned int options) argument
640 copyFile(const char* src, const char* dst, unsigned int options) argument
[all...]
/build/tools/zipalign/
H A DZipFile.cpp430 long dst = ftell(mZipFp) - startPosn; local
431 if (dst + (dst / 10) > src) {
432 ALOGD("insufficient compression (src=%ld dst=%ld), storing\n",
433 src, dst);
778 * Copy all of the bytes in "src" to "dst".
809 * Copy all of the bytes in "src" to "dst".
831 * Copy some of the bytes in "src" to "dst".
1126 status_t ZipFile::filemove(FILE* fp, off_t dst, off_t src, size_t n) argument
1128 if (dst
[all...]

Completed in 128 milliseconds