Searched defs:src (Results 1 - 5 of 5) sorted by relevance

/build/tools/acp/
H A Dacp.c116 char* src; local
123 src = malloc(srcLen+1);
124 memcpy(src, argv[i], srcLen+1);
126 if (src[srcLen-1] == FSSEP)
127 src[--srcLen] = '\0';
130 srcName = strrchr(src, FSSEP);
132 srcName = src;
139 /* concatenate dest dir and src name */
154 copyResult = copyFile(src, dst, options);
159 free(src);
[all...]
/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
116 static int copyFileContents(const char* dst, int dstFd, const char* src, int srcFd) argument
128 "acp: failed reading '%s': %s\n", src, strerror(errno));
209 static int copyRegular(const char* src, const char* dst, const struct stat* pSrcStat, unsigned int options) argument
214 DBUG(("--- copying regular '%s' to '%s'\n", src, dst));
230 src, dst);
235 DBUG(("--- source is not newer: '%s'\n", src));
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.cpp429 long src = inputFp ? ftell(inputFp) : size; 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 == src || n <= 0)
1133 if (dst < src) {
[all...]
/build/core/
H A Ddefinitions.mk180 ## SRC_FILES := $(call all-java-files-under,src tests)
202 ## SRC_FILES := $(call all-c-files-under,src tests)
245 ## SRC_FILES := $(call all-logtags-files-under,src)
258 ## SRC_FILES := $(call all-proto-files-under,src)
271 ## SRC_FILES := $(call all-renderscript-files-under,src)
284 ## SRC_FILES := $(call all-c-files-under,src tests)
297 ## SRC_FILES := $(call all-html-files-under,src tests)
864 $(hide) mkdir -p $(PRIVATE_RS_OUTPUT_DIR)/src
867 -p $(PRIVATE_RS_OUTPUT_DIR)/src \
1860 # $(1): The files to copy. Each entry is a ':' separated src
[all...]

Completed in 134 milliseconds