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

/frameworks/native/cmds/installd/
H A Dcommands.c797 int movefileordir(char* srcpath, char* dstpath, int dstbasepos, argument
804 int srcend = strlen(srcpath);
807 if (lstat(srcpath, statbuf) < 0) {
808 ALOGW("Unable to stat %s: %s\n", srcpath, strerror(errno));
815 ALOGV("Renaming %s to %s (uid %d)\n", srcpath, dstpath, dstuid);
816 if (rename(srcpath, dstpath) >= 0) {
824 srcpath, dstpath, strerror(errno));
830 d = opendir(srcpath);
832 ALOGW("Unable to opendir %s: %s\n", srcpath, strerror(errno));
847 ALOGW("Source path too long; skipping: %s/%s\n", srcpath, nam
886 char srcpath[PKG_PATH_MAX]; local
[all...]

Completed in 127 milliseconds