Searched refs:symbols (Results 1 - 4 of 4) sorted by path

/system/core/include/corkscrew/
H A Dsymbol_table.h34 symbol_t* symbols; member in struct:__anon299
/system/core/libcorkscrew/
H A Dsymbol_table.c83 // Search for the dynamic symbols section
126 // Iterate through the dynamic symbol table, and count how many symbols
137 // Iterate through the symbol table, and count how many symbols
151 table->symbols = malloc(table->num_symbols * sizeof(symbol_t));
152 if (!table->symbols) {
163 table->symbols[symbol_index].name = strdup(dynstr + dynsyms[i].st_name);
164 table->symbols[symbol_index].start = dynsyms[i].st_value;
165 table->symbols[symbol_index].end = dynsyms[i].st_value + dynsyms[i].st_size;
167 symbol_index, table->symbols[symbol_index].name,
168 table->symbols[symbol_inde
[all...]
H A Dtest.c25 symbol_table_t* symbols = NULL; local
27 symbols = load_symbol_table(backtrace_symbols[i].map_name);
30 if (symbols != NULL) {
31 symbol = find_symbol(symbols, frames[i].absolute_pc);
39 free_symbol_table(symbols);
/system/extras/tests/bionic/libc/
H A DAndroid.mk114 # The -Wl,--export-dynamic ensures that dynamic symbols are

Completed in 51 milliseconds