OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getSectionContents
(Results
1 - 25
of
25
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
COFFDump.cpp
195
getSectionContents
(const COFFObjectFile *Obj,
204
return Obj->
getSectionContents
(Section, Contents);
463
if (Error E = Obj->
getSectionContents
(Pdata, Contents))
581
if (Error E =
getSectionContents
(
ELFDump.cpp
348
unwrapOrError(Elf.
getSectionContents
(Shdr), FileName);
/src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
elf2yaml.cpp
808
auto ContentOrErr = Obj.
getSectionContents
(*Shdr);
841
auto ContentOrErr = Obj.
getSectionContents
(*Shdr);
885
auto ContentOrErr = Obj.
getSectionContents
(*Shdr);
926
auto ContentOrErr = Obj.
getSectionContents
(*Shdr);
957
Expected<ArrayRef<uint8_t>> ContentOrErr = Obj.
getSectionContents
(*Shdr);
984
Expected<ArrayRef<uint8_t>> ContentOrErr = Obj.
getSectionContents
(*Shdr);
1108
Expected<ArrayRef<uint8_t>> ContentOrErr = Obj.
getSectionContents
(*Shdr);
1124
auto ContentOrErr = Obj.
getSectionContents
(*Shdr);
1174
auto ContentOrErr = Obj.
getSectionContents
(*Shdr);
1210
auto ContentOrErr = Obj.
getSectionContents
(*Shdr)
[
all
...]
coff2yaml.cpp
122
cantFail(Obj.
getSectionContents
(COFFSection, sectionData));
181
cantFail(Obj.
getSectionContents
(COFFSection, sectionData));
macho2yaml.cpp
91
yaml::BinaryRef(Obj.
getSectionContents
(Sec.offset, Sec.size));
/src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
Win64EHDumper.cpp
340
if (Error E = Ctx.COFF.
getSectionContents
(XData, Contents))
367
if (Error E = Ctx.COFF.
getSectionContents
(PData, Contents))
DwarfCFIEHPrinter.h
183
ObjF.getELFFile().
getSectionContents
(*EHFrameShdr);
ARMEHABIPrinter.h
450
Expected<ArrayRef<uint8_t>> Contents = ELF.
getSectionContents
(EHT);
522
Expected<ArrayRef<uint8_t>> Contents = ELF.
getSectionContents
(*IT);
ELFDumper.cpp
2586
Obj.
getSectionContents
(Sec)) {
2693
unwrapOrError(FileName, Obj.
getSectionContents
(*GotSec));
2743
unwrapOrError(FileName, Obj.
getSectionContents
(*GotSec));
2787
Obj.
getSectionContents
(*PltSec))
3013
Obj.
getSectionContents
(*RegInfoSec);
3079
unwrapOrError(ObjF.getFileName(), Obj.
getSectionContents
(*MipsOpts));
3118
Obj.
getSectionContents
(*StackMapSection);
4728
Expected<ArrayRef<uint8_t>> ContentsOrErr = Obj.
getSectionContents
(Sec);
5563
Expected<ArrayRef<uint8_t>> ContentsOrErr = Obj.
getSectionContents
(Shdr);
5852
unwrapOrError(this->FileName, Obj.
getSectionContents
(Sec))
[
all
...]
ARMWinEHPrinter.cpp
908
if (COFF.
getSectionContents
(COFF.getCOFFSection(Section), Contents))
1276
if (COFF.
getSectionContents
(COFF.getCOFFSection(Section), Contents))
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Reader.cpp
69
if (Error E = COFFObj.
getSectionContents
(Sec, Contents))
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ObjectFile.h
265
getSectionContents
(DataRefImpl Sec) const = 0;
461
OwningObject->
getSectionContents
(SectionPimpl);
ELF.h
393
Expected<ArrayRef<uint8_t>>
getSectionContents
(const Elf_Shdr &Sec) const;
544
ELFFile<ELFT>::
getSectionContents
(const Elf_Shdr &Sec) const {
877
Expected<ArrayRef<uint8_t>> ContentsOrErr =
getSectionContents
(Sec);
970
Expected<ArrayRef<uint8_t>> ContentsOrErr =
getSectionContents
(Sec);
Wasm.h
186
getSectionContents
(DataRefImpl Sec) const override;
XCOFFObjectFile.h
291
getSectionContents
(DataRefImpl Sec) const override;
MachO.h
300
ArrayRef<uint8_t>
getSectionContents
(uint32_t Offset, uint64_t Size) const;
302
getSectionContents
(DataRefImpl Sec) const override;
ELFObjectFile.h
283
getSectionContents
(DataRefImpl Sec) const override;
373
auto ErrorOrContents = EF.
getSectionContents
(Sec);
840
ELFObjectFile<ELFT>::
getSectionContents
(DataRefImpl Sec) const {
COFF.h
955
getSectionContents
(DataRefImpl Sec) const override;
1077
Error
getSectionContents
(const coff_section *Sec,
/src/external/apache2/llvm/dist/llvm/lib/Object/
ELF.cpp
380
Expected<ArrayRef<uint8_t>> ContentsOrErr =
getSectionContents
(Sec);
618
Expected<ArrayRef<uint8_t>> ContentsOrErr =
getSectionContents
(Sec);
COFFObjectFile.cpp
294
COFFObjectFile::
getSectionContents
(DataRefImpl Ref) const {
297
if (Error E =
getSectionContents
(Sec, Res))
1124
Error COFFObjectFile::
getSectionContents
(const coff_section *Sec,
1855
if (Error E = Obj->
getSectionContents
(*Section, Contents))
XCOFFObjectFile.cpp
275
XCOFFObjectFile::
getSectionContents
(DataRefImpl Sec) const {
MachOObjectFile.cpp
1957
ArrayRef<uint8_t> MachOObjectFile::
getSectionContents
(uint32_t Offset,
1963
MachOObjectFile::
getSectionContents
(DataRefImpl Sec) const {
1977
return
getSectionContents
(Offset, Size);
WasmObjectFile.cpp
1653
WasmObjectFile::
getSectionContents
(DataRefImpl Sec) const {
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOReader.cpp
91
MachOObj.
getSectionContents
(SecRef->getRawDataRefImpl());
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.cpp
1677
if (Expected<ArrayRef<uint8_t>> Data = ElfFile.
getSectionContents
(Shdr))
1688
if (Expected<ArrayRef<uint8_t>> Data = ElfFile.
getSectionContents
(Shdr))
1698
if (Expected<ArrayRef<uint8_t>> Data = ElfFile.
getSectionContents
(Shdr))
1703
if (Expected<ArrayRef<uint8_t>> Data = ElfFile.
getSectionContents
(Shdr))
1708
if (Expected<ArrayRef<uint8_t>> Data = ElfFile.
getSectionContents
(Shdr))
1713
if (Expected<ArrayRef<uint8_t>> Data = ElfFile.
getSectionContents
(Shdr))
1730
Expected<ArrayRef<uint8_t>> Data = ElfFile.
getSectionContents
(Shdr);
Completed in 47 milliseconds
Indexes created Tue Sep 08 00:25:21 UTC 2026