Searched defs:newtable (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/lib/cfgadm_plugins/sata/common/
H A Dcfga_rcm.c198 char *newtable; local
257 newtable = realloc(*table, strlen(*table) + table_size);
258 if (newtable == NULL) {
261 *table = newtable;
/illumos-gate/usr/src/lib/cfgadm_plugins/scsi/common/
H A Dcfga_rcm.c265 char *newtable; local
316 newtable = realloc(*table, strlen(*table) + table_size);
317 if (newtable == NULL)
320 *table = newtable;
/illumos-gate/usr/src/lib/cfgadm_plugins/usb/common/
H A Dcfga_rcm.c218 char *newtable; local
281 newtable = realloc(*table, strlen(*table) + table_size);
282 if (newtable == NULL) {
287 *table = newtable;
/illumos-gate/usr/src/lib/cfgadm_plugins/ib/common/
H A Dcfga_rcm.c266 char *newtable; local
322 newtable = realloc(*table, strlen(*table) + table_size);
323 if (newtable != NULL)
324 *table = newtable;
/illumos-gate/usr/src/lib/cfgadm_plugins/fp/common/
H A Dcfga_rcm.c493 char *newtable; local
543 newtable = realloc(*table, strlen(*table) + table_size);
544 if (newtable != NULL)
545 *table = newtable;
/illumos-gate/usr/src/uts/common/fs/lofs/
H A Dlofs_subr.c519 struct lobucket *oldtable, *newtable; local
526 if ((newtable = kmem_zalloc(newsize * sizeof (*li->li_hashtable),
533 kmem_free(newtable, newsize * sizeof (*li->li_hashtable));
552 mutex_enter(&newtable[i].lh_lock);
563 tlp->lo_next = newtable[hash].lh_chain;
564 newtable[hash].lh_chain = tlp;
565 newtable[hash].lh_count++;
576 li->li_hashtable = newtable;
589 mutex_exit(&newtable[i].lh_lock);
/illumos-gate/usr/src/lib/cfgadm_plugins/shp/common/
H A Dshp.c420 char *newtable; local
472 newtable = realloc(*table, strlen(*table) + table_size);
473 if (newtable == NULL)
476 *table = newtable;
/illumos-gate/usr/src/lib/cfgadm_plugins/pci/common/
H A Dcfga.c401 char *newtable; local
452 newtable = realloc(*table, strlen(*table) + table_size);
453 if (newtable == NULL)
456 *table = newtable;
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dtulip.c442 u16 newtable[32]; /* Max length below. */ member in struct:fixups
754 memcpy(ee_data + 26, eeprom_fixups[i].newtable,
755 sizeof(eeprom_fixups[i].newtable));
/illumos-gate/usr/src/uts/common/io/e1000g/
H A De1000g_main.c2662 struct ether_addr *newtable; local
2688 newtable = kmem_alloc(new_len, KM_NOSLEEP);
2689 if (newtable == NULL) {
2697 bcopy(Adapter->mcast_table, newtable, old_len);
2701 Adapter->mcast_table = newtable;
2731 struct ether_addr *newtable; local
2755 newtable = kmem_alloc(new_len, KM_NOSLEEP);
2756 if (newtable != NULL) {
2757 bcopy(Adapter->mcast_table, newtable, new_len);
2761 Adapter->mcast_table = newtable;
[all...]
/illumos-gate/usr/src/uts/common/crypto/io/
H A Dcrypto.c459 crypto_minor_t **newtable; local
477 newtable = kmem_zalloc(new_size, KM_SLEEP);
485 kmem_free(newtable, new_size);
490 bcopy(crypto_minors, newtable,
503 crypto_minors = newtable;

Completed in 1631 milliseconds