Home
last modified time | relevance | path

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

/frameworks/native/cmds/installd/
Dinstalld.h150 std::string create_data_path(const char* volume_uuid);
152 std::string create_data_app_path(const char* volume_uuid);
154 std::string create_data_app_package_path(const char* volume_uuid, const char* package_name);
156 std::string create_data_user_path(const char* volume_uuid, userid_t userid);
158 std::string create_data_user_package_path(const char* volume_uuid,
161 std::string create_data_media_path(const char* volume_uuid, userid_t userid);
163 std::vector<userid_t> get_known_users(const char* volume_uuid);
Dutils.cpp44 std::string create_data_app_package_path(const char* volume_uuid, in create_data_app_package_path() argument
50 create_data_app_path(volume_uuid).c_str(), package_name); in create_data_app_package_path()
58 std::string create_data_user_package_path(const char* volume_uuid, in create_data_user_package_path() argument
64 create_data_user_path(volume_uuid, user).c_str(), package_name); in create_data_user_package_path()
85 std::string create_data_path(const char* volume_uuid) { in create_data_path() argument
86 if (volume_uuid == nullptr) { in create_data_path()
89 CHECK(is_valid_filename(volume_uuid)); in create_data_path()
90 return StringPrintf("/mnt/expand/%s", volume_uuid); in create_data_path()
97 std::string create_data_app_path(const char* volume_uuid) { in create_data_app_path() argument
98 return StringPrintf("%s/app", create_data_path(volume_uuid).c_str()); in create_data_app_path()
[all …]