HomeSort by relevance Sort by last modified time
    Searched refs:new_table (Results 1 - 8 of 8) sorted by null

  /external/e2fsprogs/lib/ss/
invocation.c 31 register ss_data *new_table; local
36 new_table = (ss_data *) malloc(sizeof(ss_data));
49 table[sci_idx] = new_table;
51 new_table->subsystem_name = subsystem_name;
52 new_table->subsystem_version = version_string;
53 new_table->argv = (char **)NULL;
54 new_table->current_request = (char *)NULL;
55 new_table->info_dirs = (char **)malloc(sizeof(char *));
56 *new_table->info_dirs = (char *)NULL;
57 new_table->info_ptr = info_ptr
    [all...]
  /external/bison/lib/
hash.c 821 Hash_table *new_table; local
826 new_table = hash_initialize (candidate, table->tuning, table->hasher,
828 if (new_table == NULL)
833 obstack_free (&new_table->entry_stack, NULL);
834 new_table->entry_stack = table->entry_stack;
836 new_table->free_entry_list = table->free_entry_list;
844 = (new_table->bucket
845 + new_table->hasher (data, new_table->n_buckets));
847 if (! (new_bucket < new_table->bucket_limit)
    [all...]
  /external/e2fsprogs/lib/et/
com_err.h 48 extern void add_to_error_table(struct et_list *new_table);
error_message.c 229 add_to_error_table(struct et_list *new_table)
231 add_error_table(new_table->table);
  /system/core/toolbox/
schedtop.c 50 struct thread_info *new_table; local
56 new_table = realloc(table->data, size * sizeof(*table->data));
57 if (new_table == NULL) {
61 table->data = new_table;
  /external/qemu/block/
qcow2-refcount.c 105 uint64_t *new_table; local
131 new_table = qemu_mallocz(new_table_size2);
132 memcpy(new_table, s->refcount_table,
135 cpu_to_be64s(&new_table[i]);
138 ret = bdrv_pwrite(s->hd, table_offset, new_table, new_table_size2);
142 be64_to_cpus(&new_table[i]);
152 s->refcount_table = new_table;
161 qemu_free(new_table);
  /external/dbus/bus/
services.c 681 DBusHashTable *new_table; local
684 new_table = bus_selinux_id_table_new ();
685 if (!new_table)
694 if (!bus_selinux_id_table_insert (new_table,
702 registry->service_sid_table = new_table;
    [all...]
  /external/v8/src/
heap.cc 3245 Object* new_table = symbol_table()->LookupSymbol(string, &symbol); local
3258 Object* new_table = symbol_table()->LookupString(string, &symbol); local
    [all...]

Completed in 264 milliseconds