Lines Matching refs:filepath
481 const String8& rootpath, const String8& filepath, off_t* outSize, in write_tarfile() argument
485 const char* relstart = filepath.string() + rootpath.length(); in write_tarfile()
506 for (size_t i = 0; i < filepath.length(); i++) { in write_tarfile()
507 if ((filepath[i] & 0x80) != 0) { in write_tarfile()
516 if (lstat64(filepath.string(), &s) != 0) { in write_tarfile()
518 ALOGE("Error %d (%s) from lstat64(%s)", err, strerror(err), filepath.string()); in write_tarfile()
543 int fd = open(filepath.string(), O_RDONLY); in write_tarfile()
546 ALOGE("Error %d (%s) from open(%s)", err, strerror(err), filepath.string()); in write_tarfile()
590 ALOGW("Error: unknown file mode 0%o [%s]", s.st_mode, filepath.string()); in write_tarfile()
689 ALOGE("Unable to read file [%s], err=%d (%s)", filepath.string(), in write_tarfile()
694 filepath.string()); in write_tarfile()