Searched refs:srcpath (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 1139 int srcend = strlen(srcpath); in movefileordir() 1142 if (lstat(srcpath, statbuf) < 0) { in movefileordir() 1143 ALOGW("Unable to stat %s: %s\n", srcpath, strerror(errno)); in movefileordir() 1150 ALOGV("Renaming %s to %s (uid %d)\n", srcpath, dstpath, dstuid); in movefileordir() 1151 if (rename(srcpath, dstpath) >= 0) { in movefileordir() 1159 srcpath, dstpath, strerror(errno)); in movefileordir() 1165 d = opendir(srcpath); in movefileordir() 1167 ALOGW("Unable to opendir %s: %s\n", srcpath, strerror(errno)); in movefileordir() 1182 ALOGW("Source path too long; skipping: %s/%s\n", srcpath, name); in movefileordir() [all …]
|