Home
last modified time | relevance | path

Searched refs:SectionType (Results 1 – 12 of 12) sorted by relevance

/system/linkerconfig/contents/include/linkerconfig/
Dcontext.h33 enum class SectionType { enum
51 : current_section_(SectionType::System), in Context()
64 void SetCurrentSection(SectionType value);
83 SectionType current_section_;
/system/linkerconfig/contents/context/
Dcontext.cc35 return current_section_ == SectionType::System; in IsSystemSection()
39 return current_section_ == SectionType::Vendor; in IsVendorSection()
43 return current_section_ == SectionType::Product; in IsProductSection()
47 return current_section_ == SectionType::Unrestricted; in IsUnrestrictedSection()
66 void Context::SetCurrentSection(SectionType section_type) { in SetCurrentSection()
/system/linkerconfig/contents/section/
Dpostinstall.cc28 using android::linkerconfig::contents::SectionType;
36 ctx.SetCurrentSection(SectionType::Other); in BuildPostInstallSection()
Dapexart.cc24 using android::linkerconfig::contents::SectionType;
35 ctx.SetCurrentSection(SectionType::Other); in BuildApexArtSection()
Dlegacy.cc23 using android::linkerconfig::contents::SectionType;
31 ctx.SetCurrentSection(SectionType::System); in BuildLegacySection()
Dvendor.cc26 using android::linkerconfig::contents::SectionType;
34 ctx.SetCurrentSection(SectionType::Vendor); in BuildVendorSection()
Dproduct.cc26 using android::linkerconfig::contents::SectionType;
34 ctx.SetCurrentSection(SectionType::Product); in BuildProductSection()
Disolated.cc24 using android::linkerconfig::contents::SectionType;
32 ctx.SetCurrentSection(SectionType::Other); in BuildIsolatedSection()
Dunrestricted.cc29 using android::linkerconfig::contents::SectionType;
37 ctx.SetCurrentSection(SectionType::Unrestricted); in BuildUnrestrictedSection()
Dsystem.cc24 using android::linkerconfig::contents::SectionType;
32 ctx.SetCurrentSection(SectionType::System); in BuildSystemSection()
Dapexdefault.cc27 using android::linkerconfig::contents::SectionType;
48 ctx.SetCurrentSection(SectionType::Other); in BuildApexDefaultSection()
/system/linkerconfig/contents/tests/configuration/
Dvndk_test.cc52 vendor_context.SetCurrentSection(SectionType::Vendor); in TEST()