Lines Matching refs:cePath
2662 auto cePath = create_data_user_ce_package_path(uuid_, userId, pkgname, ceDataInodes[i]); in getAppSize() local
2663 collectManualStats(cePath, &stats); in getAppSize()
2859 auto cePath = create_data_user_ce_path(uuid_, userId); in getUserSize() local
2860 collectManualStatsForUser(cePath, &stats, true); in getUserSize()
2907 auto cePath = create_data_user_ce_path(uuid_, userId); in getUserSize() local
2908 collectManualStatsForUser(cePath, &stats); in getUserSize()
3752 auto cePath = StringPrintf("%s/user", create_data_path(uuid_).c_str()); in tryMountDataMirror() local
3757 if (access(cePath.c_str(), F_OK) != 0) { in tryMountDataMirror()
3758 return error("Cannot access CE path: " + cePath); in tryMountDataMirror()
3764 return error("Cannot access misc CE path: " + cePath); in tryMountDataMirror()
3771 if (stat(cePath.c_str(), &ceStat) != 0) { in tryMountDataMirror()
3772 return error("Failed to stat " + cePath); in tryMountDataMirror()
3781 LOG(INFO) << "CE dir is mounted already: " + cePath; in tryMountDataMirror()
3786 if (TEMP_FAILURE_RETRY(mount(cePath.c_str(), mirrorVolCePath.c_str(), NULL, in tryMountDataMirror()