Searched defs:DynamicSection (Results 1 – 4 of 4) sorted by relevance
234 struct DynamicSection : Section { struct238 DynamicSection() : Section(ChunkKind::Dynamic) {} in DynamicSection() argument240 static bool classof(const Chunk *S) { return S->Kind == ChunkKind::Dynamic; } in classof()
282 struct DynamicSection : Section { struct285 DynamicSection() : Section(ChunkKind::Dynamic) {} in DynamicSection() function287 std::vector<std::pair<StringRef, bool>> getEntries() const override { in getEntries()291 static bool classof(const Chunk *S) { return S->Kind == ChunkKind::Dynamic; } in classof()
1237 DynamicSection<ELFT>::DynamicSection() in DynamicSection() function in DynamicSection3823 template class elf::DynamicSection<ELF32LE>; member in elf3824 template class elf::DynamicSection<ELF32BE>; member in elf3825 template class elf::DynamicSection<ELF64LE>; member in elf3826 template class elf::DynamicSection<ELF64BE>; member in elf
841 explicit DynamicSection(ArrayRef<uint8_t> Data) : Section(Data) {} in DynamicSection() function