Searched refs:new_table (Results 1 - 13 of 13) sorted by relevance

/illumos-gate/usr/src/lib/krb5/ss/
H A Dinvocation.c26 register ss_data *new_table; local
31 new_table = (ss_data *) malloc(sizeof(ss_data));
43 table[sci_idx] = new_table;
45 new_table->subsystem_name = subsystem_name;
46 new_table->subsystem_version = version_string;
47 new_table->argv = (char **)NULL;
48 new_table->current_request = (char *)NULL;
49 new_table->info_dirs = (char **)malloc(sizeof(char *));
50 *new_table->info_dirs = (char *)NULL;
51 new_table
[all...]
/illumos-gate/usr/src/uts/i86pc/boot/
H A Dboot_mmu.c90 paddr_t new_table; local
111 new_table = make_ptable(&pteval, l);
114 table = new_table;
/illumos-gate/usr/src/uts/i86pc/vm/
H A Dkboot_mmu.c493 paddr_t new_table; local
496 new_table = do_bop_phys_alloc(MMU_PAGESIZE, MMU_PAGESIZE);
497 table_ptr = kbm_remap_window(new_table, 1);
501 (void) kbm_remap_window(new_table, 0);
505 *pteval = pa_to_ma(new_table) | PT_VALID;
507 *pteval = pa_to_ma(new_table) |
510 return (new_table);
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip6_asp.c274 * policy table with those specified in new_table. If new_table is NULL,
277 * new_count policy entries in new_table.
281 ip6_asp_replace(mblk_t *mp, ip6_asp_t *new_table, size_t new_size, argument
333 if (new_table == NULL) {
364 * If 'new_table' -actually- originates from a 32-bit process
392 src = (void *)new_table;
400 ip6_asp_copy(new_table, tmp_table, count);
/illumos-gate/usr/src/lib/libnisdb/
H A Ddb_dictionary.cc1758 db_table_desc *new_table = 0; local
1759 db_status status = create_table_desc(tab, tobj, &new_table);
1769 new_table->database = new db(tab);
1770 if (new_table->database == NULL) {
1771 delete_table_desc(new_table);
1778 if (new_table->database->init(new_table->scheme) == 0) {
1781 new_table->database->remove_files();
1782 delete_table_desc(new_table);
1792 new_table
[all...]
/illumos-gate/usr/src/lib/krb5/plugins/kdb/db2/libdb2/hash/
H A Dhash.c108 int32_t bpages, csize, new_table, save_errno, specified_file; local
151 new_table = 0;
156 new_table = 1;
165 if (new_table) {
223 if (new_table &&
237 hashp->new_file = new_table;
/illumos-gate/usr/src/uts/i86pc/dboot/
H A Ddboot_startkern.c377 paddr_t new_table = (paddr_t)(uintptr_t)mem_alloc(MMU_PAGESIZE); local
380 *pteval = pa_to_ma((uintptr_t)new_table) | PT_VALID;
382 *pteval = pa_to_ma((uintptr_t)new_table) | ptp_bits;
386 if (HYPERVISOR_update_va_mapping(new_table,
393 PRIx64 "\n", level, (ulong_t)new_table, *pteval);
394 return (new_table);
/illumos-gate/usr/src/lib/libumem/common/
H A Dvmem.c1589 vmem_seg_t **old_table, **new_table, *vsp; local
1600 new_table = vmem_alloc(vmem_hash_arena, new_size * sizeof (void *),
1602 if (new_table == NULL)
1604 bzero(new_table, new_size * sizeof (void *));
1612 vmp->vm_hash_table = new_table;
H A Dumem.c2416 umem_bufctl_t **old_table, **new_table, *bcp; local
2428 new_table = vmem_alloc(umem_hash_arena, new_size * sizeof (void *),
2430 if (new_table == NULL)
2432 bzero(new_table, new_size * sizeof (void *));
2440 cp->cache_hash_table = new_table;
/illumos-gate/usr/src/uts/common/os/
H A Dvmem.c1661 vmem_seg_t **old_table, **new_table, *vsp; local
1674 new_table = vmem_alloc(vmem_hash_arena, new_size * sizeof (void *),
1676 if (new_table == NULL)
1678 bzero(new_table, new_size * sizeof (void *));
1686 vmp->vm_hash_table = new_table;
H A Dkmem.c3355 kmem_bufctl_t **old_table, **new_table, *bcp; local
3367 new_table = vmem_alloc(kmem_hash_arena, new_size * sizeof (void *),
3369 if (new_table == NULL)
3371 bzero(new_table, new_size * sizeof (void *));
3379 cp->cache_hash_table = new_table;
/illumos-gate/usr/src/uts/common/io/igb/
H A Digb_main.c2685 struct ether_addr *new_table; local
2709 new_table = kmem_alloc(new_len, KM_NOSLEEP);
2710 if (new_table == NULL) {
2717 bcopy(igb->mcast_table, new_table, old_len);
2721 igb->mcast_table = new_table;
2747 struct ether_addr *new_table; local
2773 new_table = kmem_alloc(new_len, KM_NOSLEEP);
2774 if (new_table != NULL) {
2775 bcopy(igb->mcast_table, new_table, new_len);
2778 igb->mcast_table = new_table;
[all...]
/illumos-gate/usr/src/cmd/dcs/sparc/sun4u/
H A Dri_init.c1933 lookup_entry_t *new_table; local
1940 new_table = (lookup_entry_t *)realloc(table->table, size);
1941 if (new_table == NULL) {
1947 table->table = new_table;

Completed in 114 milliseconds