/aosp12/build/soong/symbol_inject/ |
H A D | elf_symboldata_test.go | 64 …elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 1, Value: 0x400238, Size: 0x0… 65 …elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 2, Value: 0x400254, Size: 0x0… 66 …elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 3, Value: 0x400278, Size: 0x0… 88 elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 25, Value: 0x0, Size: 0x0}, 89 …elf.Symbol{Name: "crtstuff.c", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, 98 elf.Symbol{Name: "test.c", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, 99 …elf.Symbol{Name: "crtstuff.c", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, 102 elf.Symbol{Name: "", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, 201 elf.Symbol{Name: "", Info: 0x3, Other: 0x0, Section: elf.SHN_UNDEF + 25, Value: 0x0, Size: 0x0}, 211 elf.Symbol{Name: "test2.c", Info: 0x4, Other: 0x0, Section: elf.SHN_ABS, Value: 0x0, Size: 0x0}, [all …]
|
H A D | macho_symboldata_test.go | 33 Sections: []*macho.Section{ 34 …&macho.Section{SectionHeader: macho.SectionHeader{Name: "__text", Seg: "__TEXT", Addr: 0x100000f50… 35 …&macho.Section{SectionHeader: macho.SectionHeader{Name: "__stubs", Seg: "__TEXT", Addr: 0x100000f7… 37 …&macho.Section{SectionHeader: macho.SectionHeader{Name: "__unwind_info", Seg: "__TEXT", Addr: 0x10… 38 …&macho.Section{SectionHeader: macho.SectionHeader{Name: "__eh_frame", Seg: "__TEXT", Addr: 0x10000… 40 …&macho.Section{SectionHeader: macho.SectionHeader{Name: "__la_symbol_ptr", Seg: "__DATA", Addr: 0x… 41 …&macho.Section{SectionHeader: macho.SectionHeader{Name: "__data", Seg: "__DATA", Addr: 0x100001020… 68 Sections: []*macho.Section{ 69 …&macho.Section{SectionHeader: macho.SectionHeader{Name: "__text", Seg: "__TEXT", Addr: 0x100000f30… 73 …&macho.Section{SectionHeader: macho.SectionHeader{Name: "__eh_frame", Seg: "__TEXT", Addr: 0x10000… [all …]
|
H A D | pe_test.go | 53 Sections: []*pe.Section{ 54 …&pe.Section{SectionHeader: pe.SectionHeader{Name: ".text", VirtualSize: 0x15e83c, VirtualAddress: … 55 …&pe.Section{SectionHeader: pe.SectionHeader{Name: ".data", VirtualSize: 0x6a58, VirtualAddress: 0x… 73 Sections: []*pe.Section{ 74 …&pe.Section{SectionHeader: pe.SectionHeader{Name: ".text", VirtualSize: 0x1cc0, VirtualAddress: 0x… 75 …&pe.Section{SectionHeader: pe.SectionHeader{Name: ".data", VirtualSize: 0xa0, VirtualAddress: 0x30… 91 Sections: []*pe.Section{ 92 …&pe.Section{SectionHeader: pe.SectionHeader{Name: ".text", VirtualSize: 0x1cc0, VirtualAddress: 0x… 93 …&pe.Section{SectionHeader: pe.SectionHeader{Name: ".data", VirtualSize: 0xa0, VirtualAddress: 0x30… 94 …&pe.Section{SectionHeader: pe.SectionHeader{Name: ".rdata", VirtualSize: 0x5e0, VirtualAddress: 0x… [all …]
|
H A D | elf.go | 75 file.Sections = append(file.Sections, &Section{ 83 _ = elf.Section{} 89 if symbol.Section == elf.SHN_UNDEF || symbol.Section >= elf.SHN_LORESERVE { 92 if int(symbol.Section) >= len(file.Sections) { 93 return nil, fmt.Errorf("invalid section index %d", symbol.Section) 96 section := file.Sections[symbol.Section] 124 Section: section,
|
H A D | symbol_inject.go | 129 if file.Symbols[n].Section != symbol.Section { 144 end = symbol.Section.Size 154 offset := symbol.Section.Offset + symbol.Addr 166 Sections []*Section 173 Section *Section member 176 type Section struct { struct
|
/aosp12/packages/apps/Camera2/src/com/android/camera/util/ |
H A D | XmpUtil.java | 63 private static class Section { class in XmpUtil 106 List<Section> sections = parse(is, true); in extractXMPMeta() 111 for (Section section : sections) { in extractXMPMeta() 153 List<Section> sections = null; in writeXMPMeta() 220 for (Section section : sections) { in writeJpegFile() 235 List<Section> sections, XMPMeta meta) { in insertXMPSection() 260 Section xmpSection = new Section(); in insertXMPSection() 277 List<Section> newSections = new ArrayList<Section>(); in insertXMPSection() 343 List<Section> sections = new ArrayList<Section>(); in parse() 360 Section section = new Section(); in parse() [all …]
|
/aosp12/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
H A D | XmpDepthDecode.java | 127 private static class Section { class in XmpDepthDecode 198 List<Section> sections = new ArrayList<Section>(); in parse() 223 Section section = new Section(); in parse() 287 Section section = new Section(); in readSection() 299 Section section = new Section(); in readSection() 307 Section section = new Section(); in readSection() 346 for (Section section : sections) { in parseFirstValidXMPSection() 374 for (Section section : sections) { in checkExtendedSectionExists() 395 List<Section> xmpSections = new ArrayList<Section>(); in parseExtendedXMPSections() 399 for (Section section : sections) { in parseExtendedXMPSections() [all …]
|
/aosp12/art/libelffile/elf/ |
H A D | elf_builder.h | 296 : Section(owner, in StringSection() 314 Section::Start(); in Start() 347 : Section(owner, in SymbolSection() 965 Section rodata_; 966 Section text_; 968 Section bss_; 969 Section dex_; 976 Section debug_frame_; 977 Section debug_frame_hdr_; 978 Section debug_info_; [all …]
|
/aosp12/system/linkerconfig/modules/include/linkerconfig/ |
H A D | section.h | 50 class Section { 52 Section(std::string name, std::vector<Namespace> namespaces) in Section() function 56 Section(const Section&) = delete; 57 Section(Section&&) = default;
|
H A D | configuration.h | 32 explicit Configuration(std::vector<Section> sections, in Configuration() 43 Section* GetSection(const std::string& name); 46 std::vector<Section> sections_;
|
/aosp12/frameworks/base/cmds/incidentd/src/ |
H A D | Section.h | 41 class Section { 47 Section(int id, int64_t timeoutMs = REMOTE_CALL_TIMEOUT_MS); 48 virtual ~Section(); 56 class FileSection : public Section { 72 class GZipSection : public Section { 87 class WorkerThreadSection : public Section { 100 class CommandSection : public Section { 133 class TextDumpsysSection : public Section {
|
H A D | Reporter.h | 45 class Section; variable 205 void warning(const Section* section, status_t err, const char* format, ...); 206 void error(const Section* section, status_t err, const char* format, ...); 254 void vflog(const Section* section, status_t err, int level, const char* levelText, 277 status_t execute_section(const Section* section, IncidentMetadata* metadata,
|
/aosp12/art/dexlayout/ |
H A D | dex_container.h | 33 class Section { 35 virtual ~Section() {} in ~Section() 59 class VectorSection : public Section { 89 virtual Section* GetMainSection() = 0; 90 virtual Section* GetDataSection() = 0;
|
H A D | compact_dex_writer.h | 40 explicit Deduper(DexContainer::Section* section); 59 explicit HashEqual(DexContainer::Section* section) : section_(section) {} in HashEqual() 83 DexContainer::Section* const section_; 112 Section* GetMainSection() override { in GetMainSection() 116 Section* GetDataSection() override { in GetDataSection()
|
/aosp12/system/linkerconfig/modules/tests/ |
H A D | section_test.cc | 105 Section section("test_section", std::move(namespaces)); in TEST() 118 Section section("test_section", std::move(namespaces)); in TEST() 135 Section section("section", std::move(namespaces)); in TEST() 164 Section section("section", std::move(namespaces)); in TEST() 178 Section section("section", std::move(namespaces)); in TEST() 192 Section section("section", std::move(namespaces)); in TEST() 218 Section section("section", std::move(namespaces)); in TEST()
|
H A D | configuration_test.cc | 89 std::vector<Section> sections; in TEST() 111 Section system_section("system", std::move(system_namespaces)); in TEST() 119 Section vendor_section("vendor", std::move(vendor_namespaces)); in TEST()
|
/aosp12/hardware/libhardware/modules/camera/3_0/ |
H A D | VendorTags.cpp | 43 struct Section { struct 77 const Section DemoSections[DEMO_SECTION_COUNT] = { 93 const Section* getSection(uint32_t tag) in getSection() 113 const Section* section = getSection(tag); in getEntry() 165 const Section* section = getSection(tag); in getSectionName()
|
/aosp12/system/linkerconfig/contents/section/ |
H A D | recovery.cc | 23 using android::linkerconfig::modules::Section; 28 Section BuildRecoverySection(Context& ctx) { in BuildRecoverySection() 31 Section section("recovery", std::move(namespaces)); in BuildRecoverySection()
|
H A D | postinstall.cc | 30 using android::linkerconfig::modules::Section; 35 Section BuildPostInstallSection(Context& ctx) { in BuildPostInstallSection() 41 return Section("postinstall", std::move(namespaces)); in BuildPostInstallSection()
|
H A D | sectionbuilder.cc | 32 using modules::Section; 34 Section BuildSection(const Context& ctx, const std::string& name, in BuildSection() 58 Section section(std::move(name), std::move(namespaces)); in BuildSection()
|
/aosp12/system/linkerconfig/contents/include/linkerconfig/ |
H A D | sectionbuilder.h | 26 typedef android::linkerconfig::modules::Section SectionBuilder( 29 typedef android::linkerconfig::modules::Section ApexSectionBuilder( 37 modules::Section BuildSection(const Context& ctx, const std::string& name,
|
/aosp12/frameworks/base/cmds/incidentd/tests/ |
H A D | section_list.cpp | 11 class TestSection: public Section { 19 :Section(id, 5000 /* ms timeout */) { in TestSection() 50 const Section* SECTION_LIST[] = {
|
/aosp12/system/linkerconfig/modules/ |
H A D | section.cc | 35 void Section::WriteConfig(ConfigWriter& writer) { in WriteConfig() 71 Result<void> Section::Resolve(const BaseContext& ctx, in Resolve() 152 Namespace* Section::GetNamespace(const std::string& namespace_name) { in GetNamespace() 162 std::string Section::GetName() { in GetName()
|
/aosp12/system/linkerconfig/contents/tests/configuration/include/ |
H A D | configurationtest.h | 37 inline void ValidateAllNamespacesAreVisible(const Section& section) { in ValidateAllNamespacesAreVisible() 51 inline void ValidateNamespace(const Namespace& target_namespace, const Section& parent_section) { in ValidateNamespace() 59 inline void ValidateSection(const Section& section) { in ValidateSection()
|
/aosp12/frameworks/native/opengl/specs/ |
H A D | EGL_ANDROID_framebuffer_target.txt | 63 Section 3.4, Configuration Management, add a row to Table 3.1. 71 Section 3.4, Configuration Management, add a row to Table 3.4. 78 Section 3.4, Configuration Management, add a paragraph at the end of the 86 Section 3.4.1, Querying Configurations, change the last paragraph as follow
|