Home
last modified time | relevance | path

Searched refs:srcpath (Results 1 – 1 of 1) sorted by relevance

/frameworks/native/cmds/installd/
Dcommands.cpp1299 int movefileordir(char* srcpath, char* dstpath, int dstbasepos, in movefileordir() argument
1306 int srcend = strlen(srcpath); in movefileordir()
1309 if (lstat(srcpath, statbuf) < 0) { in movefileordir()
1310 ALOGW("Unable to stat %s: %s\n", srcpath, strerror(errno)); in movefileordir()
1317 ALOGV("Renaming %s to %s (uid %d)\n", srcpath, dstpath, dstuid); in movefileordir()
1318 if (rename(srcpath, dstpath) >= 0) { in movefileordir()
1326 srcpath, dstpath, strerror(errno)); in movefileordir()
1332 d = opendir(srcpath); in movefileordir()
1334 ALOGW("Unable to opendir %s: %s\n", srcpath, strerror(errno)); in movefileordir()
1349 ALOGW("Source path too long; skipping: %s/%s\n", srcpath, name); in movefileordir()
[all …]