OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SectionsOrErr
(Results
1 - 3
of
3
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
DwarfCFIEHPrinter.h
51
Expected<typename ELFT::ShdrRange>
SectionsOrErr
=
53
if (!
SectionsOrErr
)
54
reportError(
SectionsOrErr
.takeError(), ObjF.getFileName());
56
for (const typename ELFT::Shdr &Shdr : *
SectionsOrErr
)
82
Expected<typename ELFT::ShdrRange>
SectionsOrErr
= Obj.sections();
83
if (!
SectionsOrErr
)
84
reportError(
SectionsOrErr
.takeError(), ObjF.getFileName());
86
for (const Elf_Shdr &Shdr : *
SectionsOrErr
) {
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
ELF.h
1083
auto
SectionsOrErr
= sections();
1084
if (!
SectionsOrErr
)
1085
return
SectionsOrErr
.takeError();
1086
return getSHNDXTable(Section, *
SectionsOrErr
);
1121
auto
SectionsOrErr
= sections();
1122
if (!
SectionsOrErr
)
1123
return
SectionsOrErr
.takeError();
1124
return getStringTableForSymtab(Sec, *
SectionsOrErr
);
1163
auto
SectionsOrErr
= sections();
1164
if (!
SectionsOrErr
)
[
all
...]
ELFObjectFile.h
321
auto
SectionsOrErr
= EF.sections();
322
if (!
SectionsOrErr
) {
327
uintptr_t SHT = reinterpret_cast<uintptr_t>((*
SectionsOrErr
).begin());
366
auto
SectionsOrErr
= EF.sections();
367
if (!
SectionsOrErr
)
368
return
SectionsOrErr
.takeError();
370
for (const Elf_Shdr &Sec : *
SectionsOrErr
) {
460
auto
SectionsOrErr
= EF.sections();
461
if (!
SectionsOrErr
)
462
return
SectionsOrErr
.takeError()
[
all
...]
Completed in 18 milliseconds
Indexes created Tue Jun 23 00:25:03 UTC 2026