Searched defs:DynamicSection (Results 1 – 2 of 2) sorted by relevance
345 struct DynamicSection : Section { struct348 DynamicSection() : Section(ChunkKind::Dynamic) {} in DynamicSection() argument350 std::vector<std::pair<StringRef, bool>> getEntries() const override { in getEntries()354 static bool classof(const Chunk *S) { return S->Kind == ChunkKind::Dynamic; } in classof()
844 explicit DynamicSection(ArrayRef<uint8_t> Data) : Section(Data) {} in DynamicSection() function