Lines Matching refs:uuid_
457 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in createAppData() local
473 auto path = create_data_user_ce_package_path(uuid_, userId, pkgname); in createAppData()
507 auto path = create_data_user_de_package_path(uuid_, userId, pkgname); in createAppData()
537 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in migrateAppData() local
545 auto ce_path = create_data_user_ce_package_path(uuid_, userId, pkgname); in migrateAppData()
546 auto de_path = create_data_user_de_package_path(uuid_, userId, pkgname); in migrateAppData()
598 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in clearAppData() local
603 auto path = create_data_user_ce_package_path(uuid_, userId, pkgname, ceDataInode); in clearAppData()
629 auto path = create_data_user_de_package_path(uuid_, userId, pkgname) + suffix; in clearAppData()
718 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in destroyAppData() local
723 auto path = create_data_user_ce_package_path(uuid_, userId, pkgname, ceDataInode); in destroyAppData()
729 auto path = create_data_user_de_package_path(uuid_, userId, pkgname); in destroyAppData()
789 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in fixupAppData() local
790 for (auto user : get_known_users(uuid_)) { in fixupAppData()
794 auto ce_path = create_data_user_ce_path(uuid_, user); in fixupAppData()
795 auto de_path = create_data_user_de_path(uuid_, user); in fixupAppData()
1286 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in createUserData() local
1288 if (uuid_ == nullptr) { in createUserData()
1304 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in destroyUserData() local
1307 auto path = create_data_user_de_path(uuid_, userId); in destroyUserData()
1311 if (uuid_ == nullptr) { in destroyUserData()
1323 auto path = create_data_user_ce_path(uuid_, userId); in destroyUserData()
1342 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in freeCache() local
1343 auto data_path = create_data_path(uuid_); in freeCache()
1367 for (auto user : get_known_users(uuid_)) { in freeCache()
1370 auto ce_path = create_data_user_ce_path(uuid_, user); in freeCache()
1371 auto de_path = create_data_user_de_path(uuid_, user); in freeCache()
1780 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in getAppSize() local
1788 auto obbCodePath = create_data_media_package_path(uuid_, userId, in getAppSize()
1816 auto cePath = create_data_user_ce_package_path(uuid_, userId, pkgname, ceDataInodes[i]); in getAppSize()
1818 auto dePath = create_data_user_de_package_path(uuid_, userId, pkgname); in getAppSize()
1834 auto extPath = create_data_media_package_path(uuid_, userId, "data", pkgname); in getAppSize()
1836 auto mediaPath = create_data_media_package_path(uuid_, userId, "media", pkgname); in getAppSize()
1987 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in getUserSize() local
1995 calculate_tree_size(create_data_app_path(uuid_), &stats.codeSize, -1, -1, true); in getUserSize()
1999 auto cePath = create_data_user_ce_path(uuid_, userId); in getUserSize()
2001 auto dePath = create_data_user_de_path(uuid_, userId); in getUserSize()
2043 auto obbPath = create_data_path(uuid_) + "/media/obb"; in getUserSize()
2048 calculate_tree_size(create_data_app_path(uuid_), &stats.codeSize); in getUserSize()
2052 auto cePath = create_data_user_ce_path(uuid_, userId); in getUserSize()
2054 auto dePath = create_data_user_de_path(uuid_, userId); in getUserSize()
2068 auto dataMediaPath = create_data_media_path(uuid_, userId); in getUserSize()
2114 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in getExternalSize() local
2151 auto path = create_data_media_path(uuid_, userId); in getExternalSize()
2195 create_data_media_path(uuid_, userId).c_str()); in getExternalSize()
2227 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in getAppCrates() local
2241 auto crateManager = std::make_unique<CrateManager>(uuid_, userId, packageName); in getAppCrates()
2272 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in getUserCrates() local
2284 auto crateManager = std::make_unique<CrateManager>(uuid_, userId, packageDir->fts_name); in getUserCrates()
2445 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in linkNativeLibraryDirectory() local
2451 auto _pkgdir = create_data_user_ce_package_path(uuid_, userId, pkgname); in linkNativeLibraryDirectory()
2540 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in restoreconAppData() local
2546 auto path = create_data_user_ce_package_path(uuid_, userId, pkgName); in restoreconAppData()
2552 auto path = create_data_user_de_package_path(uuid_, userId, pkgName); in restoreconAppData()
2882 const char* uuid_ = uuid->c_str(); in tryMountDataMirror() local
2884 std::string mirrorVolCePath(StringPrintf("%s/%s", kDataMirrorCePath, uuid_)); in tryMountDataMirror()
2890 std::string mirrorVolDePath(StringPrintf("%s/%s", kDataMirrorDePath, uuid_)); in tryMountDataMirror()
2895 auto cePath = StringPrintf("%s/user", create_data_path(uuid_).c_str()); in tryMountDataMirror()
2896 auto dePath = StringPrintf("%s/user_de", create_data_path(uuid_).c_str()); in tryMountDataMirror()
2947 const char* uuid_ = uuid->c_str(); in onPrivateVolumeRemoved() local
2951 std::string mirrorCeVolPath(StringPrintf("%s/%s", kDataMirrorCePath, uuid_)); in onPrivateVolumeRemoved()
2952 std::string mirrorDeVolPath(StringPrintf("%s/%s", kDataMirrorDePath, uuid_)); in onPrivateVolumeRemoved()
2982 const char* uuid_ = uuid ? uuid->c_str() : nullptr; in findDataMediaPath() local
2983 auto path = StringPrintf("%s/media", create_data_path(uuid_).c_str()); in findDataMediaPath()