Home
last modified time | relevance | path

Searched refs:visible_apexes (Results 1 – 9 of 9) sorted by relevance

/system/linkerconfig/contents/section/
Dlegacy.cc36 std::set<std::string> visible_apexes; in BuildLegacySection() local
41 visible_apexes.insert(apex.name); in BuildLegacySection()
45 return BuildSection(ctx, "legacy", std::move(namespaces), visible_apexes); in BuildLegacySection()
Disolated.cc38 std::set<std::string> visible_apexes; in BuildIsolatedSection() local
43 visible_apexes.insert(apex.name); in BuildIsolatedSection()
47 return BuildSection(ctx, "isolated", std::move(namespaces), visible_apexes); in BuildIsolatedSection()
Dvendor.cc45 std::set<std::string> visible_apexes; in BuildVendorSection() local
50 visible_apexes.insert(apex.name); in BuildVendorSection()
54 return BuildSection(ctx, "vendor", std::move(namespaces), visible_apexes); in BuildVendorSection()
Dproduct.cc45 std::set<std::string> visible_apexes; in BuildProductSection() local
50 visible_apexes.insert(apex.name); in BuildProductSection()
54 return BuildSection(ctx, "product", std::move(namespaces), visible_apexes); in BuildProductSection()
Dunrestricted.cc47 std::set<std::string> visible_apexes; in BuildUnrestrictedSection() local
52 visible_apexes.insert(apex.name); in BuildUnrestrictedSection()
57 ctx, "unrestricted", std::move(namespaces), visible_apexes); in BuildUnrestrictedSection()
Dsystem.cc47 std::set<std::string> visible_apexes; in BuildSystemSection() local
52 visible_apexes.insert(apex.name); in BuildSystemSection()
56 return BuildSection(ctx, "system", std::move(namespaces), visible_apexes); in BuildSystemSection()
Dsectionbuilder.cc36 const std::set<std::string>& visible_apexes, in BuildSection() argument
40 if (visible_apexes.find(apex.name) == visible_apexes.end() && in BuildSection()
Dapexdefault.cc49 std::set<std::string> visible_apexes; in BuildApexDefaultSection() local
56 visible_apexes.insert(apex.name); in BuildApexDefaultSection()
111 ctx, apex_info.name, std::move(namespaces), visible_apexes, libs_providers); in BuildApexDefaultSection()
/system/linkerconfig/contents/include/linkerconfig/
Dsectionbuilder.h39 const std::set<std::string>& visible_apexes,