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

/frameworks/native/cmds/installd/
H A Dcommands.c1132 int movefileordir(char* srcpath, char* dstpath, int dstbasepos, argument
1139 int srcend = strlen(srcpath);
1142 if (lstat(srcpath, statbuf) < 0) {
1143 ALOGW("Unable to stat %s: %s\n", srcpath, strerror(errno));
1150 ALOGV("Renaming %s to %s (uid %d)\n", srcpath, dstpath, dstuid);
1151 if (rename(srcpath, dstpath) >= 0) {
1159 srcpath, dstpath, strerror(errno));
1165 d = opendir(srcpath);
1167 ALOGW("Unable to opendir %s: %s\n", srcpath, strerror(errno));
1182 ALOGW("Source path too long; skipping: %s/%s\n", srcpath, nam
1221 char srcpath[PKG_PATH_MAX]; local
[all...]

Completed in 32 milliseconds