Searched defs:table (Results 1 - 3 of 3) sorted by relevance

/system/core/debuggerd/
H A Dsymbol_table.c35 * Create a symbol table from a given file
42 * Free symbol table with symbol_table_free()
46 struct symbol_table *table = NULL; local
53 XLOG2("Creating symbol table for %s\n", filename);
90 table = malloc(sizeof(struct symbol_table));
91 if(!table) {
94 table->name = strdup(filename);
95 table->num_symbols = 0;
122 // Iterate through the dynamic symbol table, and count how many symbols
133 // Iterate through the symbol table, an
205 symbol_table_free(struct symbol_table *table) argument
233 symbol_table_lookup(struct symbol_table *table, unsigned int addr) argument
[all...]
/system/core/toolbox/
H A Dschedtop.c49 static void grow_table(struct thread_table *table) argument
51 size_t size = table->allocated;
58 new_table = realloc(table->data, size * sizeof(*table->data));
63 table->data = new_table;
64 table->allocated = size;
67 static struct thread_info *get_item(struct thread_table *table) argument
69 if (table->active >= table->allocated)
70 grow_table(table);
74 commit_item(struct thread_table *table) argument
[all...]
/system/core/debuggerd/arm/
H A Dunwind.c149 /* An exception index table entry. */
243 /* Perform a binary search for RETURN_ADDRESS in TABLE. The table contains
247 search_EIT_table (const __EIT_entry * table, int nrec, _uw return_address, argument
263 this_fn = selfrel_offset31 (&table[n].fnoffset, pid);
265 next_fn = selfrel_offset31 (&table[n + 1].fnoffset, pid) - 1;
276 return &table[n];
282 /* Find the exception index table eintry for the given address. */
311 /* Find the exception index table eintry for the given address.

Completed in 69 milliseconds