Home
last modified time | relevance | path

Searched refs:root_path (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/cmds/installd/
Dglobals.cpp69 const char* root_path = getenv("ANDROID_ROOT"); in init_globals_from_data_and_root() local
70 if (root_path == nullptr) { in init_globals_from_data_and_root()
74 return init_globals_from_data_and_root(data_path, root_path); in init_globals_from_data_and_root()
Dutils.cpp73 static std::string resolve_ce_path_by_inode_or_fallback(const std::string& root_path, in resolve_ce_path_by_inode_or_fallback() argument
76 DIR* dir = opendir(root_path.c_str()); in resolve_ce_path_by_inode_or_fallback()
78 PLOG(ERROR) << "Failed to opendir " << root_path; in resolve_ce_path_by_inode_or_fallback()
85 auto resolved = StringPrintf("%s/%s", root_path.c_str(), ent->d_name); in resolve_ce_path_by_inode_or_fallback()
/frameworks/base/libs/androidfw/
DApkAssets.cpp207 bool ApkAssets::ForEachFile(const std::string& root_path, in ForEachFile() argument
211 std::string root_path_full = root_path; in ForEachFile()