Home
last modified time | relevance | path

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

/aosp12/system/linkerconfig/contents/context/
H A 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()
/aosp12/system/linkerconfig/contents/include/linkerconfig/
H A Dcontext.h26 enum class SectionType { enum
44 : current_section_(SectionType::System), in Context()
59 void SetCurrentSection(SectionType value);
72 SectionType current_section_;
/aosp12/art/libdexfile/dex/
H A Ddex_file_layout.h108 enum class SectionType : uint8_t { enum
118 DexLayoutSection sections_[static_cast<size_t>(SectionType::kSectionCount)];
121 std::ostream& operator<<(std::ostream& os, DexLayoutSections::SectionType collector_type);
H A Ddex_file_layout.cc107 for (size_t i = 0; i < static_cast<size_t>(DexLayoutSections::SectionType::kSectionCount); ++i) { in operator <<()
108 os << static_cast<DexLayoutSections::SectionType>(i) << ":" << sections.sections_[i] << "\n"; in operator <<()
/aosp12/system/linkerconfig/contents/section/
H A Dpostinstall.cc28 using android::linkerconfig::contents::SectionType;
36 ctx.SetCurrentSection(SectionType::Other); in BuildPostInstallSection()
H A Dlegacy.cc23 using android::linkerconfig::contents::SectionType;
31 ctx.SetCurrentSection(SectionType::System); in BuildLegacySection()
H A Disolated.cc24 using android::linkerconfig::contents::SectionType;
32 ctx.SetCurrentSection(SectionType::Other); in BuildIsolatedSection()
H A Dproduct.cc26 using android::linkerconfig::contents::SectionType;
34 ctx.SetCurrentSection(SectionType::Product); in BuildProductSection()
H A Dunrestricted.cc29 using android::linkerconfig::contents::SectionType;
37 ctx.SetCurrentSection(SectionType::Unrestricted); in BuildUnrestrictedSection()
H A Dvendor.cc26 using android::linkerconfig::contents::SectionType;
34 ctx.SetCurrentSection(SectionType::Vendor); in BuildVendorSection()
H A Dsystem.cc25 using android::linkerconfig::contents::SectionType;
33 ctx.SetCurrentSection(SectionType::System); in BuildSystemSection()
H A Dapexdefault.cc27 using android::linkerconfig::contents::SectionType;
46 ctx.SetCurrentSection(SectionType::Other); in BuildApexDefaultSection()
/aosp12/frameworks/base/core/proto/android/
H A Dsection.proto26 // SectionType defines how incidentd gonna get the field's data
27 enum SectionType { enum
56 optional SectionType type = 1 [default = SECTION_NONE];
/aosp12/system/linkerconfig/contents/tests/configuration/
H A Dvndk_test.cc52 vendor_context.SetCurrentSection(SectionType::Vendor); in TEST()
/aosp12/frameworks/base/core/proto/android/os/
H A Ddata.proto23 // The top level proto message must be used as a new SectionType in
/aosp12/hardware/qcom/camera/msm8998/QCamera2/HAL/test/
H A Dqcamera_test.h97 Sections_t *FindSection(int SectionType);
H A Dqcamera_test.cpp765 CameraContext::Sections_t *CameraContext::FindSection(int SectionType) in FindSection() argument
768 if (mSections[a].Type == SectionType){ in FindSection()
/aosp12/art/dexlayout/
H A Ddex_writer.cc606 DexLayoutSections::SectionType::kSectionTypeCode)]; in WriteCodeItems()
/aosp12/art/dex2oat/
H A Ddex2oat_test.cc1232 sections->sections_[static_cast<size_t>(DexLayoutSections::SectionType::kSectionTypeCode)]; in TEST_F()