Home
last modified time | relevance | path

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

/system/linkerconfig/contents/include/linkerconfig/
Dcontext.h26 enum class SectionType { enum
44 : current_section_(SectionType::System), in Context()
59 void SetCurrentSection(SectionType value);
72 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()
71 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()
Dlegacy.cc23 using android::linkerconfig::contents::SectionType;
31 ctx.SetCurrentSection(SectionType::System); in BuildLegacySection()
Disolated.cc24 using android::linkerconfig::contents::SectionType;
32 ctx.SetCurrentSection(SectionType::Other); in BuildIsolatedSection()
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()
Dunrestricted.cc29 using android::linkerconfig::contents::SectionType;
37 ctx.SetCurrentSection(SectionType::Unrestricted); in BuildUnrestrictedSection()
Dsystem.cc25 using android::linkerconfig::contents::SectionType;
33 ctx.SetCurrentSection(SectionType::System); in BuildSystemSection()
Dapexdefault.cc27 using android::linkerconfig::contents::SectionType;
46 ctx.SetCurrentSection(SectionType::Other); in BuildApexDefaultSection()
/system/linkerconfig/contents/tests/configuration/
Dvndk_test.cc52 vendor_context.SetCurrentSection(SectionType::Vendor); in TEST()