OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sym_idx
(Results
1 - 5
of
5
) sorted by null
/system/core/libcorkscrew/
symbol_table.c
76
int
sym_idx
= -1;
local
80
sym_idx
= i;
86
if (dynsym_idx == -1 &&
sym_idx
== -1) {
109
if (
sym_idx
!= -1) {
110
syms = (Elf32_Sym*)(base + shdr[
sym_idx
].sh_offset);
111
numsyms = shdr[
sym_idx
].sh_size / shdr[
sym_idx
].sh_entsize;
112
int str_idx = shdr[
sym_idx
].sh_link;
128
if (
sym_idx
!= -1) {
166
if (
sym_idx
!= -1)
[
all
...]
/external/oprofile/libutil++/
op_bfd.h
129
* @param
sym_idx
index of the symbol
134
* Retrieve the relevant finename:linenr information for the
sym_idx
139
bool get_linenr(symbol_index_t
sym_idx
, bfd_vma offset,
143
* @param
sym_idx
symbol index
154
void get_symbol_range(symbol_index_t
sym_idx
,
194
* @param
sym_idx
symbol index
197
* symbol referenced by the passed
sym_idx
has code available.
208
bool symbol_has_contents(symbol_index_t
sym_idx
);
op_bfd.cpp
316
symbol_has_contents(symbol_index_t
sym_idx
)
318
op_bfd_symbol const & bfd_sym = syms[
sym_idx
];
368
bool op_bfd::get_linenr(symbol_index_t
sym_idx
, bfd_vma offset,
375
op_bfd_symbol const & sym = syms[
sym_idx
];
403
void op_bfd::get_symbol_range(symbol_index_t
sym_idx
,
406
op_bfd_symbol const & sym = syms[
sym_idx
];
/frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp
619
for (size_t
sym_idx
=0;
sym_idx
< symtabIdx; ++
sym_idx
) {
620
llvm::StringRef name(strtab + symtab32[
sym_idx
].st_name);
622
chain[
sym_idx
] = bucket[bucket_pos];
623
bucket[bucket_pos] =
sym_idx
;
627
for (size_t
sym_idx
=0;
sym_idx
< symtabIdx; ++
sym_idx
) {
628
llvm::StringRef name(strtab + symtab64[
sym_idx
].st_name)
[
all
...]
/frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.cpp
413
for (size_t
sym_idx
=0;
sym_idx
< symtabIdx; ++
sym_idx
) {
414
llvm::StringRef name(strtab + symtab32[
sym_idx
].st_name);
416
chain[
sym_idx
] = bucket[bucket_pos];
417
bucket[bucket_pos] =
sym_idx
;
Completed in 210 milliseconds