Lines Matching refs:active_point
99 for (const std::string& active_point : activation_dirs) { in RunFnInstall() local
100 if (0 != rmdir(active_point.c_str())) { in RunFnInstall()
102 << active_point; in RunFnInstall()
125 std::string active_point; in RunFnInstall() local
145 active_point = apexd_private::GetActiveMountPoint(manifest); in RunFnInstall()
148 if (0 == mkdir(active_point.c_str(), kMkdirMode)) { in RunFnInstall()
149 activation_dirs.push_back(active_point); in RunFnInstall()
151 PLOG(ERROR) << "Unable to create mount point " << active_point; in RunFnInstall()
158 apexd_private::BindMount(active_point, mount_point); in RunFnInstall()
161 << active_point << ": " << bind_status.error(); in RunFnInstall()
165 return std::make_pair(active_point, hook); in RunFnInstall()
169 auto [active_point, hook] = bind_fn(in_argv[2]); in RunFnInstall()
170 hook_path = active_point + "/" + hook; in RunFnInstall()