Home
last modified time | relevance | path

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

/system/apex/apexd/
Dapexd_prepostinstall.cpp65 const std::vector<std::string>& mount_points, Fn fn, in StageFnInstall() argument
84 mount_points[hook_idx] // Make the APEX with hook first. in StageFnInstall()
86 for (size_t i = 0; i < mount_points.size(); i++) { in StageFnInstall()
88 args.push_back(mount_points[i]); in StageFnInstall()
205 const std::vector<std::string>& mount_points) { in StagePreInstall() argument
206 return StageFnInstall(apexes, mount_points, &ApexManifest::preinstallhook, in StagePreInstall()
215 const std::vector<std::string>& mount_points) { in StagePostInstall() argument
216 return StageFnInstall(apexes, mount_points, &ApexManifest::postinstallhook, in StagePostInstall()
Dapexd_prepostinstall.h35 const std::vector<std::string>& mount_points);
43 const std::vector<std::string>& mount_points);
Dapexd.cpp726 std::vector<std::string> mount_points; in PrePostinstallPackages() local
740 mount_points.push_back(mount_point); in PrePostinstallPackages()
743 Result<void> install_status = (*call)(apexes, mount_points); in PrePostinstallPackages()