Searched refs:table (Results 1 – 6 of 6) sorted by relevance
/system/core/libcorkscrew/ |
D | symbol_table.c | 57 symbol_table_t* table = NULL; in load_symbol_table() local 98 table = malloc(sizeof(symbol_table_t)); in load_symbol_table() 99 if(!table) { in load_symbol_table() 102 table->num_symbols = 0; in load_symbol_table() 150 table->num_symbols += symbol_count + dynsymbol_count; in load_symbol_table() 151 table->symbols = malloc(table->num_symbols * sizeof(symbol_t)); in load_symbol_table() 152 if (!table->symbols) { in load_symbol_table() 153 free(table); in load_symbol_table() 154 table = NULL; in load_symbol_table() 163 table->symbols[symbol_index].name = strdup(dynstr + dynsyms[i].st_name); in load_symbol_table() [all …]
|
/system/core/toolbox/ |
D | schedtop.c | 49 static void grow_table(struct thread_table *table) in grow_table() argument 51 size_t size = table->allocated; in grow_table() 58 new_table = realloc(table->data, size * sizeof(*table->data)); in grow_table() 63 table->data = new_table; in grow_table() 64 table->allocated = size; in grow_table() 67 static struct thread_info *get_item(struct thread_table *table) in get_item() argument 69 if (table->active >= table->allocated) in get_item() 70 grow_table(table); in get_item() 71 return table->data + table->active; in get_item() 74 static void commit_item(struct thread_table *table) in commit_item() argument [all …]
|
/system/core/include/corkscrew/ |
D | symbol_table.h | 47 void free_symbol_table(symbol_table_t* table); 53 const symbol_t* find_symbol(const symbol_table_t* table, uintptr_t addr);
|
/system/media/camera/docs/ |
D | html.mako | 27 /* table column sizes */ 28 table { table-layout: fixed; width: 100%; word-wrap: break-word } 123 <table class="properties"> 288 </table>
|
/system/netd/ |
D | CommandListener.cpp | 105 static void createChildChains(IptablesTarget target, const char* table, const char* parentChain, in createChildChains() argument 117 execIptablesSilently(target, "-t", table, "-D", parentChain, "-j", *childChain, NULL); in createChildChains() 118 execIptablesSilently(target, "-t", table, "-F", *childChain, NULL); in createChildChains() 119 execIptablesSilently(target, "-t", table, "-X", *childChain, NULL); in createChildChains() 120 execIptables(target, "-t", table, "-N", *childChain, NULL); in createChildChains() 121 execIptables(target, "-t", table, "-A", parentChain, "-j", *childChain, NULL); in createChildChains()
|
/system/core/sh/ |
D | TOUR | 217 var.c Maintains the variable symbol table. Called from expand.c. 239 the command in the hash table if it is not already there. The 244 table of the parent process. But to make command hashing as 261 VAR.C: Variables are stored in a hash table. Probably we should 271 the variable table as the simplest way to strip duplicates, and 278 out of the table and replaced with strings obtained from malloc,
|