Searched refs:dstpath (Results 1 – 1 of 1) sorted by relevance
/frameworks/native/cmds/installd/ |
D | commands.c | 1132 int movefileordir(char* srcpath, char* dstpath, int dstbasepos, in movefileordir() argument 1140 int dstend = strlen(dstpath); in movefileordir() 1148 mkinnerdirs(dstpath, dstbasepos, S_IRWXU|S_IRWXG|S_IXOTH, in movefileordir() 1150 ALOGV("Renaming %s to %s (uid %d)\n", srcpath, dstpath, dstuid); in movefileordir() 1151 if (rename(srcpath, dstpath) >= 0) { in movefileordir() 1152 if (chown(dstpath, dstuid, dstgid) < 0) { in movefileordir() 1153 ALOGE("cannot chown %s: %s\n", dstpath, strerror(errno)); in movefileordir() 1154 unlink(dstpath); in movefileordir() 1159 srcpath, dstpath, strerror(errno)); in movefileordir() 1187 ALOGW("Destination path too long; skipping: %s/%s\n", dstpath, name); in movefileordir() [all …]
|