Home
last modified time | relevance | path

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

/system/apex/tools/
Dhost_apex_verifier.cc86 void CheckInitRc(const std::string& apex_dir, const ApexManifest& manifest, in CheckInitRc() argument
97 std::string init_dir_path = apex_dir + "/etc"; in CheckInitRc()
168 std::unique_ptr<DIR, decltype(&closedir)> apex_dir( in ScanPartitionApexes() local
170 if (!apex_dir) { in ScanPartitionApexes()
176 while ((entry = readdir(apex_dir.get()))) { in ScanPartitionApexes()
/system/apex/apexd/
Dapexd.cpp3706 for (const std::string& apex_dir : entries) { in ActivateFlattenedApex() local
3707 std::string manifest_file = apex_dir + "/" + kManifestFilenamePb; in ActivateFlattenedApex()
3726 LOG(INFO) << "Bind mounting " << apex_dir << " onto " << mount_point; in ActivateFlattenedApex()
3727 if (mount(apex_dir.c_str(), mount_point.c_str(), nullptr, MS_BIND, in ActivateFlattenedApex()
3729 PLOG(ERROR) << "Failed to bind mount " << apex_dir << " to " in ActivateFlattenedApex()
3734 apex_infos.emplace_back(manifest->name(), /* modulePath= */ apex_dir, in ActivateFlattenedApex()
3735 /* preinstalledModulePath= */ apex_dir, in ActivateFlattenedApex()
Dapexd_test.cpp3040 auto write_manifest_fn = [&](const std::string& apex_dir, in TEST_F()
3051 ASSERT_TRUE(WriteStringToFile(out, apex_dir + "/apex_manifest.pb")); in TEST_F()