Searched refs:table (Results 1 - 6 of 6) sorted by relevance

/system/core/libcorkscrew/
H A Dsymbol_table.c63 symbol_table_t* table = NULL; local
65 ALOGV("Loading symbol table from '%s'.", filename);
105 table = malloc(sizeof(symbol_table_t));
106 if(!table) {
109 table->num_symbols = 0;
133 // Iterate through the dynamic symbol table, and count how many symbols
144 // Iterate through the symbol table, and count how many symbols
156 // Now, create an entry in our symbol table structure for each symbol...
157 table->num_symbols += symbol_count + dynsymbol_count;
158 table
213 free_symbol_table(symbol_table_t* table) argument
223 find_symbol(const symbol_table_t* table, uintptr_t addr) argument
[all...]
/system/core/include/corkscrew/
H A Dsymbol_table.h39 * Loads a symbol table from a given file.
45 * Frees a symbol table.
47 void free_symbol_table(symbol_table_t* table);
50 * Finds a symbol associated with an address in the symbol table.
53 const symbol_t* find_symbol(const symbol_table_t* table, uintptr_t addr);
/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/fs_mgr/
H A Dfs_mgr_verity.c86 static int verify_table(char *signature, char *table, int table_length) argument
93 // Hash the table
94 SHA_hash((uint8_t*)table, table_length, hash_buf);
109 ERROR("Couldn't verify table.");
150 static int read_verity_metadata(char *block_device, char **signature, char **table) argument
207 // get the size of the table
209 ERROR("Couldn't get the size of the verity table from metadata!\n");
214 // get the table + null terminator
216 *table = malloc(table_length);
217 if(!*table) {
275 load_verity_table(struct dm_ioctl *io, char *name, char *blockdev, int fd, char *table) argument
[all...]
/system/media/camera/docs/
H A Dhtml.mako38 /* table column sizes */
39 table { border-collapse:collapse; table-layout: fixed; width: 100%; word-wrap: break-word }
154 <table class="properties">
319 </table>
/system/netd/
H A DCommandListener.cpp114 static void createChildChains(IptablesTarget target, const char* table, const char* parentChain, argument
126 execIptablesSilently(target, "-t", table, "-D", parentChain, "-j", *childChain, NULL);
127 execIptablesSilently(target, "-t", table, "-F", *childChain, NULL);
128 execIptablesSilently(target, "-t", table, "-X", *childChain, NULL);
129 execIptables(target, "-t", table, "-N", *childChain, NULL);
130 execIptables(target, "-t", table, "-A", parentChain, "-j", *childChain, NULL);
420 "Failed to add route to default table", true);
423 "Route added to default table", false);
437 "Failed to remove route from default table", true);
440 "Route removed from default table", fals
[all...]

Completed in 4706 milliseconds