OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CompressedSection
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.h
44
class
CompressedSection
;
86
virtual Error visit(const
CompressedSection
&Sec) = 0;
103
virtual Error visit(
CompressedSection
&Sec) = 0;
123
virtual Error visit(const
CompressedSection
&Sec) override = 0;
143
Error visit(const
CompressedSection
&Sec) override;
167
Error visit(
CompressedSection
&Sec) override;
187
Error visit(const
CompressedSection
&Sec) override;
526
class
CompressedSection
: public SectionBase {
535
static Expected<
CompressedSection
>
537
static Expected<
CompressedSection
> create(ArrayRef<uint8_t> CompressedData
[
all
...]
ELFObjcopy.cpp
481
Expected<
CompressedSection
> NewSection =
482
CompressedSection
::create(*S, Config.CompressionType);
486
return &Obj.addSection<
CompressedSection
>(std::move(*NewSection));
492
[](const SectionBase &S) { return isa<
CompressedSection
>(&S); },
494
const
CompressedSection
*CS = cast<
CompressedSection
>(S);
Object.cpp
135
template <class ELFT> Error ELFSectionSizer<ELFT>::visit(
CompressedSection
&) {
515
Error BinarySectionWriter::visit(const
CompressedSection
&Sec) {
522
Error ELFSectionWriter<ELFT>::visit(const
CompressedSection
&Sec) {
550
Expected<
CompressedSection
>
551
CompressedSection
::create(const SectionBase &Sec,
554
CompressedSection
Section(Sec, CompressionType, Err);
561
Expected<
CompressedSection
>
562
CompressedSection
::create(ArrayRef<uint8_t> CompressedData,
565
return
CompressedSection
(CompressedData, DecompressedSize, DecompressedAlign);
568
CompressedSection
::CompressedSection(const SectionBase &Sec
[
all
...]
Completed in 86 milliseconds
Indexes created Mon Jun 15 00:25:07 UTC 2026