OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_in_text_section
(Results
1 - 4
of
4
) sorted by null
/system/extras/simpleperf/
read_elf.h
37
bool
is_in_text_section
;
member in struct:ElfFileSymbol
40
ElfFileSymbol() : vaddr(0), len(0), is_func(false), is_label(false),
is_in_text_section
(false) {
read_elf_test.cpp
48
ASSERT_TRUE(pos->second.
is_in_text_section
);
dso.cpp
281
return (elf_symbol.is_func && elf_symbol.
is_in_text_section
);
293
return elf_symbol.is_func || (elf_symbol.is_label && elf_symbol.
is_in_text_section
);
read_elf.cpp
232
symbol.
is_in_text_section
= true;
250
if (symbol.
is_in_text_section
) {
Completed in 972 milliseconds